Skip to content

Commit

Permalink
Compile error introduced in ee9233d
Browse files Browse the repository at this point in the history
Motivation:
Commit ee9233d introduced a compile error in microbench.

Modifications:
Fix compile error.

Result:
Code now builds.
  • Loading branch information
Scottmitch committed Apr 22, 2015
1 parent 9d66180 commit 6955899
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public class Http2PriorityTreeBenchmark extends AbstractMicrobenchmark {
public void setup() throws Http2Exception {
connection = new DefaultHttp2Connection(false);
for (int i = 0; i < numStreams; ++i) {
connection.local().createStream(toStreamId(i));
connection.local().createStream(toStreamId(i), false);
}
}

Expand Down

0 comments on commit 6955899

Please sign in to comment.