Leaderboard update

This commit is contained in:
Gunnar Morling
2024-01-07 10:58:05 +01:00
parent 6b3027955a
commit 96efccfb49
2 changed files with 10 additions and 5 deletions

View File

@@ -88,7 +88,7 @@ class ProcessorMap {
Map<BytesWrapper, AggregatedProcessor> processors = new HashMap<>(1024);
public void printResults() {
System.out.println("Processed: " + processors.entrySet().stream().mapToLong(e -> e.getValue().count).sum());
// System.out.println("Processed: " + processors.entrySet().stream().mapToLong(e -> e.getValue().count).sum());
System.out.print("{");
System.out.print(
processors.entrySet().stream()
@@ -325,4 +325,4 @@ class BytesWrapper implements Comparable<BytesWrapper> {
public int compareTo(BytesWrapper bytesWrapper) {
return this.toString().compareTo(bytesWrapper.toString());
}
}
}