Skip to content

Commit 4fe3652

Browse files
committed
Revert "review undertow Http2OpenListener"
This reverts commit 11fe2b7.
1 parent 11fe2b7 commit 4fe3652

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

core-ng/src/main/java/io/undertow/server/protocol/http2/Http2OpenListener.java

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
import java.util.Set;
3737
import java.util.concurrent.ConcurrentHashMap;
3838

39+
3940
/**
4041
* Open listener for HTTP2 server
4142
*
@@ -84,6 +85,11 @@ public void handleEvent(final StreamConnection channel, PooledByteBuffer buffer)
8485
http2Channel.resumeReceives();
8586
}
8687

88+
@Override
89+
public void handleEvent(StreamConnection channel) {
90+
handleEvent(channel, null);
91+
}
92+
8793
@Override
8894
public ConnectorStatistics getConnectorStatistics() {
8995
return null;
@@ -123,9 +129,4 @@ public void setUndertowOptions(final OptionMap undertowOptions) {
123129
public ByteBufferPool getBufferPool() {
124130
return bufferPool;
125131
}
126-
127-
@Override
128-
public void handleEvent(StreamConnection channel) {
129-
handleEvent(channel, null);
130-
}
131132
}

0 commit comments

Comments
 (0)