From 7befcad7103c571503aace3b04746e492125e905 Mon Sep 17 00:00:00 2001 From: Jonathan Gamble Date: Mon, 23 Sep 2024 17:41:27 -0500 Subject: [PATCH] scalafix wants things alphabetized --- src/main/scala/netty/WorkerLoop.scala | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main/scala/netty/WorkerLoop.scala b/src/main/scala/netty/WorkerLoop.scala index 2af3e64f..cf161530 100644 --- a/src/main/scala/netty/WorkerLoop.scala +++ b/src/main/scala/netty/WorkerLoop.scala @@ -2,10 +2,11 @@ package lila.ws package netty import com.typesafe.config.Config -import io.netty.channel.{ Channel, EventLoopGroup } -import io.netty.handler.codec.http.websocketx.TextWebSocketFrame import io.netty.channel.epoll.{ EpollEventLoopGroup, EpollServerSocketChannel } import io.netty.channel.kqueue.{ KQueueEventLoopGroup, KQueueServerSocketChannel } +import io.netty.channel.{ Channel, EventLoopGroup } +import io.netty.handler.codec.http.websocketx.TextWebSocketFrame + import java.util.concurrent.{ ConcurrentLinkedQueue, TimeUnit } final class WorkerLoop(config: Config)(using Executor):