javatests/io/bazel/rules/closure/http/ProducersExample.java [159:168]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  private Future<Void> handleOneConnection(final HttpServer<?> httpServer) {
    return executor.submit(
        new Callable<Void>() {
          @Override
          public Void call() throws Exception {
            httpServer.handleOneConnection(server);
            return null;
          }
        });
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



javatests/io/bazel/rules/closure/http/HttpServerTest.java [180:189]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  private Future<Void> handleOneConnection(final HttpServer<?> httpServer) {
    return executor.submit(
        new Callable<Void>() {
          @Override
          public Void call() throws Exception {
            httpServer.handleOneConnection(server);
            return null;
          }
        });
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



