Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: add new line to stat
  • Loading branch information
daniel-mohedano committed Sep 19, 2025
commit 3ccd7f51955001049626bac556e9dbaa8adaec47
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,6 @@ static final String nextValue() {
}

static final void printStats(SimpleUtf8Cache cache) {
System.out.printf("eden hits: %5d\tpromotions: %5d", cache.hits, cache.evictions);
System.out.printf("eden hits: %5d\tpromotions: %5d%n", cache.hits, cache.evictions);
}
}