Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
armanbilge committed Sep 11, 2023
1 parent 8aca9e3 commit 1d462fd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core/jvm/src/main/scala/cats/effect/unsafe/TimerHeap.scala
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,8 @@ private final class TimerHeap extends AtomicBoolean { needsPack =>
val heap = TimerHeap.this
if (worker.ownsTimers(heap))
heap.removeAt(index)
else needsPack.set(true) // otherwise this heap will need packing
else // otherwise this heap will need packing
needsPack.set(true)
} else needsPack.set(true)
}

Expand Down

0 comments on commit 1d462fd

Please sign in to comment.