e24a5d8 compile error

Motivation:
e24a5d8 was cherry-picked but had a compile error.

Modifications:
- Fix the compile error in e24a5d8

Result:
Build now compiles.
This commit is contained in:
Scott Mitchell 2016-03-25 12:51:11 -07:00
parent e24a5d8839
commit 61cfdd7671

View File

@ -35,7 +35,7 @@ public class InboundHttpToHttp2Adapter extends ChannelInboundHandlerAdapter {
private int getStreamId(HttpHeaders httpHeaders) {
return httpHeaders.getInt(HttpConversionUtil.ExtensionHeaderNames.STREAM_ID.text(),
connection.remote().nextStreamId());
connection.remote().incrementAndGetNextStreamId());
}
@Override