Github user sohami commented on a diff in the pull request: https://github.com/apache/drill/pull/950#discussion_r140394414 --- Diff: exec/java-exec/src/main/java/org/apache/drill/exec/rpc/user/UserClient.java --- @@ -176,31 +256,28 @@ public void connect(final DrillbitEndpoint endpoint, final DrillProperties prope } private CheckedFuture<Void, RpcException> connect(final UserToBitHandshake handshake, - final DrillbitEndpoint endpoint) { + final DrillbitEndpoint endpoint) { final SettableFuture<Void> connectionSettable = SettableFuture.create(); final CheckedFuture<Void, RpcException> connectionFuture = new AbstractCheckedFuture<Void, RpcException>(connectionSettable) { - @Override - protected RpcException mapException(Exception e) { + @Override protected RpcException mapException(Exception e) { --- End diff -- Please undo these formatting changes above and below
---