Skip to content

Commit

Permalink
remove action queue size
Browse files Browse the repository at this point in the history
  • Loading branch information
daemontus committed Mar 29, 2017
1 parent 1733eeb commit c40f41f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/github/sybila/Components.kt
Original file line number Diff line number Diff line change
Expand Up @@ -155,9 +155,9 @@ class LocalAlgorithm(
fun printActionProgress() {
val last = lastPrint.get()
if (System.currentTimeMillis() > last + 3000 && lastPrint.compareAndSet(last, System.currentTimeMillis())) {
synchronized(pending) {
/*synchronized(pending) {
println("Action queue: ${pending.size}")
}
}*/
}
}

Expand Down

0 comments on commit c40f41f

Please sign in to comment.