Commit 55b69073 authored by Adam Goins's avatar Adam Goins Committed by Makayla Shepherd
Browse files

Removed references to invalid accessor methods in ControlMeasure.

Fixed references in ControlNetVersioner to those accessors.
parent e1a5692c
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -320,8 +320,6 @@ namespace Isis {
      bool HasSampleResidual() const;
      bool HasLineResidual() const;
      bool HasJigsawRejected() const;
      bool JigsawRejected() const;
      int LogSize() const;

      static QVector<QString> GetMeasureDataNames();

+2 −2
Original line number Diff line number Diff line
@@ -489,11 +489,11 @@ namespace Isis {
        }

        if ( controlMeasure.IsRejected() ) {
          pvlMeasure += PvlKeyword("JigsawRejected", toString(controlMeasure.JigsawRejected()));
          pvlMeasure += PvlKeyword("JigsawRejected", toString(controlMeasure.IsRejected()));
        }

        for (int logEntry = 0;
            logEntry < controlMeasure.LogSize(); // DNE?
            logEntry < controlMeasure.GetLogDataEntries().size(); 
            logEntry ++) {
          const ControlMeasureLogData &log =
                controlMeasure.GetLogData(logEntry); // Not sure this is right.