Skip to content

Commit 3bb5ae4

Browse files
committed
1412 fixed compile error after merge
1 parent 85f30e2 commit 3bb5ae4

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

client/src/main/java/org/asynchttpclient/netty/channel/ChannelManager.java

+2-3
Original file line numberDiff line numberDiff line change
@@ -322,13 +322,12 @@ public void close() {
322322
if (allowReleaseEventLoopGroup) {
323323
eventLoopGroup.shutdownGracefully(config.getShutdownQuietPeriod(), config.getShutdownTimeout(), TimeUnit.MILLISECONDS)//
324324
.addListener(future -> doClose());
325-
} else {
325+
} else
326326
doClose();
327327

328328
try {
329329
closeLatch.await(config.getShutdownTimeout(), TimeUnit.MILLISECONDS);
330-
}
331-
catch (InterruptedException e) {
330+
} catch (InterruptedException e) {
332331
// Ignore
333332
}
334333
}

0 commit comments

Comments
 (0)