We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa4e55c commit f2ab5baCopy full SHA for f2ab5ba
avaje-jex-http3-flupke/src/test/java/io/avaje/jex/http3/flupke/webtransport/SessionCloseTest.java
@@ -29,7 +29,7 @@ void testClientInitiatedSessionCloseHandling() throws Exception {
29
.webTransport(
30
"/close",
31
b ->
32
- b.onOpen(_ -> openLatch.countDown())
+ b.onOpen(__ -> openLatch.countDown())
33
.onClose(
34
ctx -> {
35
closeCode.set(ctx.code());
@@ -86,7 +86,7 @@ void testServerInitiatedSessionClose() throws Exception {
86
87
var session = clientSessionFactory.createSession(localhost.resolve("/server-close"));
88
session.registerSessionTerminatedEventListener(
89
- (code, _) -> {
+ (code, __) -> {
90
clientCloseCode.set(code);
91
clientCloseLatch.countDown();
92
});
0 commit comments