reducing noise

only:uaefi
This commit is contained in:
rusefillc 2024-04-19 10:48:34 -04:00
parent 92fc3c185d
commit c7f258c9fd
3 changed files with 4 additions and 4 deletions

View File

@ -26,7 +26,7 @@ public class CurveData implements HoHo {
break; break;
countOfEqualElementsAtTheEnd++; 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 { 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); curve[index++] = Float.parseFloat(line);
} }
System.out.println("Got bins " + Arrays.toString(curve)); // System.out.println("Got bins " + Arrays.toString(curve));
} }
@NotNull @NotNull

View File

@ -153,7 +153,7 @@ public class TS2C {
String line; String line;
while ((line = br.readLine()) != null) { while ((line = br.readLine()) != null) {
if (line.contains(magicStringKey)) { if (line.contains(magicStringKey)) {
System.out.println("Found " + line); // System.out.println("Found " + line);
break; break;
} }
} }

View File

@ -79,7 +79,7 @@ public class TableData implements HoHo {
throw new IllegalStateException("While reading " + str, e); 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++; rowIndex++;
} }
} }