Skip to content

Commit 7fcf2b8

Browse files
committed
Format and organize imports
1 parent 63829ef commit 7fcf2b8

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

kernel-testkit/shared/src/main/scala/cats/effect/kernel/testkit/TestContext.scala

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import scala.concurrent.duration._
2424
import scala.util.{Random, Try}
2525
import scala.util.control.NonFatal
2626

27-
import java.util.{Base64, Comparator, Collections}
27+
import java.util.{Base64, Collections, Comparator}
2828
import java.util.concurrent.ConcurrentSkipListSet
2929
import java.util.concurrent.atomic.{AtomicLong, AtomicReference}
3030

@@ -288,10 +288,11 @@ object TestContext {
288288
val lastReportedFailure: AtomicReference[Throwable] = new AtomicReference()
289289
)
290290

291-
private final class InternalState(
291+
private final class InternalState(
292292
val currentID: AtomicLong = new AtomicLong(),
293293
val currentNanos: AtomicLong = new AtomicLong(),
294-
val tasks: java.util.SortedSet[Task] = Collections.synchronizedSortedSet(new ConcurrentSkipListSet(Task.comparator)),
294+
val tasks: java.util.SortedSet[Task] =
295+
Collections.synchronizedSortedSet(new ConcurrentSkipListSet(Task.comparator)),
295296
val lastReportedFailure: AtomicReference[Throwable] = new AtomicReference()
296297
)
297298

0 commit comments

Comments
 (0)