Skip to content

Commit

Permalink
Fix Annotation Bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ZuiRenA committed Jan 19, 2020
1 parent eb0c1d9 commit a7ca335
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ annotation class Executors {
}

@IntDef(value = [
Priorities.THREAD_PRIORITY_FOREGROUND,
Priorities.THREAD_PRIORITY_BACKGROUND,
Priorities.THREAD_PRIORITY_LOWEST
Priorities.THREAD_PRIORITY_FOREGROUND.toLong(),
Priorities.THREAD_PRIORITY_BACKGROUND.toLong(),
Priorities.THREAD_PRIORITY_LOWEST.toLong()
])
@Retention(AnnotationRetention.SOURCE)
annotation class Priorities {
Expand Down

0 comments on commit a7ca335

Please sign in to comment.