File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
netty/src/main/java/io/grpc/transport/netty Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -184,9 +184,9 @@ public EventLoopGroup create() {
184184 Runtime .getRuntime ().availableProcessors () * 2 : nEventLoops ;
185185 final ExecutorService executor = Executors .newFixedThreadPool (parallelism , threadFactory );
186186 NioEventLoopGroup nioEventLoopGroup = new NioEventLoopGroup (parallelism , executor );
187- nioEventLoopGroup .terminationFuture ().addListener (new GenericFutureListener <Future <? >>() {
187+ nioEventLoopGroup .terminationFuture ().addListener (new GenericFutureListener <Future <Object >>() {
188188 @ Override
189- public void operationComplete (Future <? > future ) throws Exception {
189+ public void operationComplete (Future <Object > future ) throws Exception {
190190 executor .shutdown ();
191191 }
192192 });
You can’t perform that action at this time.
0 commit comments