Skip to content

Commit

Permalink
Moved DefaultSystemTime to SystemTime.kt
Browse files Browse the repository at this point in the history
  • Loading branch information
LikeTheSalad committed Jan 10, 2024
1 parent 7c3fe19 commit c407bab
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 12 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,10 @@ internal interface SystemTime {
}

fun getCurrentTimeMillis(): Long

class DefaultSystemTime : SystemTime {
override fun getCurrentTimeMillis(): Long {
return System.currentTimeMillis()
}
}
}

0 comments on commit c407bab

Please sign in to comment.