Refactor TableModState to use nanoTime refactor (#1720)

* #1719 - Refactor TableModState to use nanoTime

* Tests only - reduce logging
This commit is contained in:
Rob Bygrave
2019-05-21 00:42:17 +12:00
committed by GitHub
parent cf4d45befb
commit 7fbdab6220
18 changed files with 59 additions and 90 deletions
@@ -46,9 +46,9 @@ class NoTransaction implements SpiTransaction {
}
@Override
public long getStartMillis() {
public long getStartNanoTime() {
// not used
return System.currentTimeMillis();
return System.nanoTime();
}
@Override