Skip to content

Commit effe5f1

Browse files
committed
Fix checkstyle
1 parent 1da6cd9 commit effe5f1

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

core/src/test/java/io/netty/loom/VirtualMultithreadIoEventLoopGroupTest.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -632,12 +632,12 @@ void testShutdownSchedulerOnLongBlockingIO() throws IOException, InterruptedExce
632632
for (int i = 0; i < toWrite.length; i++) {
633633
toWrite[i] = (byte) i;
634634
}
635-
// it has to be waiting on read
636-
while (readerVThread.getState() != Thread.State.WAITING) {
637-
Thread.sleep(1);
638-
}
635+
// it has to be waiting on read
636+
while (readerVThread.getState() != Thread.State.WAITING) {
637+
Thread.sleep(1);
638+
}
639639
for (int i = 0; i < toWrite.length; i++) {
640-
Thread.sleep(10); // make sure the read is parked
640+
Thread.sleep(10); // make sure the read is parked
641641
byte b = toWrite[i];
642642
// shutdown whilst the read is parked
643643
if (i == shutDownAt) {

0 commit comments

Comments
 (0)