We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2f9c6bf + c7e5df0 commit 23b4f84Copy full SHA for 23b4f84
compiler/src/jdk.graal.compiler/src/jdk/graal/compiler/debug/WallClockTimerKey.java
@@ -63,11 +63,11 @@ public TimeUnit getTimeUnit() {
63
64
@Override
65
public String toHumanReadableFormat(long value) {
66
- return String.format("%d ms", value);
+ return String.format("%d ns", value);
67
}
68
69
70
public Pair<String, String> toCSVFormat(long value) {
71
- return Pair.create(Long.toString(value), "ms");
+ return Pair.create(Long.toString(value), "ns");
72
73
0 commit comments