BIG REFACTOR - erasing unused code

This commit is contained in:
2019-03-19 15:09:46 +01:00
parent 10666b4453
commit 2c028cd334
50 changed files with 13 additions and 4317 deletions

View File

@@ -49,15 +49,4 @@ public class TimeWatch {
return "Elapsed Time in nano seconds: ";
}
private void exampleUsage() {
TimeWatch watch = TimeWatch.start();
// do something...
System.out.println("Elapsed Time custom format: " + watch.toMinuteSeconds());
System.out.println("Elapsed Time in seconds: " + watch.time(TimeUnit.SECONDS));
System.out.println("Elapsed Time in nano seconds: " + watch.time());
}
}