mirror of
https://github.com/2revoemag/PSF-BotServer.git
synced 2026-01-19 18:14:44 +00:00
swicthing to nanoTime() for Travis CI
This commit is contained in:
parent
404d083578
commit
478de8e0ef
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue