[#3934] Add StopWatch.split() to get current time
This commit is contained in:
parent
1c6bd5a2eb
commit
ccb5101229
@ -88,6 +88,10 @@ public final class StopWatch {
|
||||
}
|
||||
}
|
||||
|
||||
public long split() {
|
||||
return System.nanoTime() - start;
|
||||
}
|
||||
|
||||
private String splitMessage() {
|
||||
final long temp = split;
|
||||
split = System.nanoTime();
|
||||
|
||||
Loading…
Reference in New Issue
Block a user