jgrateron: fix formatting

Followup on #69
This commit is contained in:
Alexander Yastrebov 2024-01-04 23:49:19 +01:00 committed by Gunnar Morling
parent a9d149d013
commit 69ff290d9d

View File

@ -32,7 +32,7 @@ public class CalculateAverage_jgrateron {
private static int MAX_LINES = 100000;
public static void main(String[] args) throws IOException, InterruptedException {
//long startTime = System.nanoTime();
// long startTime = System.nanoTime();
var tasks = new ArrayList<TaskCalcular>();
try (var reader = new BufferedReader(new FileReader(FILE))) {
@ -73,7 +73,7 @@ public class CalculateAverage_jgrateron {
System.out.println("{" + result + "}");
//System.out.println("Total: " + (System.nanoTime() - startTime) / 1000000);
// System.out.println("Total: " + (System.nanoTime() - startTime) / 1000000);
}
/*