parent
92fc3c185d
commit
c7f258c9fd
|
@ -26,7 +26,7 @@ public class CurveData implements HoHo {
|
|||
break;
|
||||
countOfEqualElementsAtTheEnd++;
|
||||
}
|
||||
System.out.println(countOfEqualElementsAtTheEnd + " equal elements at the end of the curve");
|
||||
// System.out.println(countOfEqualElementsAtTheEnd + " equal elements at the end of the curve");
|
||||
}
|
||||
|
||||
static CurveData processCurve(String msqFileName, String curveName, IniFileModel model, BufferedWriter w) throws IOException {
|
||||
|
@ -81,7 +81,7 @@ public class CurveData implements HoHo {
|
|||
curve[index++] = Float.parseFloat(line);
|
||||
}
|
||||
|
||||
System.out.println("Got bins " + Arrays.toString(curve));
|
||||
// System.out.println("Got bins " + Arrays.toString(curve));
|
||||
}
|
||||
|
||||
@NotNull
|
||||
|
|
|
@ -153,7 +153,7 @@ public class TS2C {
|
|||
String line;
|
||||
while ((line = br.readLine()) != null) {
|
||||
if (line.contains(magicStringKey)) {
|
||||
System.out.println("Found " + line);
|
||||
// System.out.println("Found " + line);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -79,7 +79,7 @@ public class TableData implements HoHo {
|
|||
throw new IllegalStateException("While reading " + str, e);
|
||||
}
|
||||
}
|
||||
System.out.println("Got line " + rowIndex + ": " + Arrays.toString(table[rowIndex]));
|
||||
// System.out.println("Got line " + rowIndex + ": " + Arrays.toString(table[rowIndex]));
|
||||
rowIndex++;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue