swicthing to nanoTime() for Travis CI

This commit is contained in:
FateJH 2017-08-16 00:10:27 -04:00
parent 404d083578
commit 478de8e0ef

View file

@ -15,7 +15,10 @@ trait Task {
}
object Task {
def TimeNow : Long = { java.time.Instant.now().getEpochSecond }
def TimeNow : Long = {
System.nanoTime()
//java.time.Instant.now().getEpochSecond
}
object Resolution extends Enumeration {
val Success, Incomplete, Failure = Value