File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
common/network-common/src/main/java/org/apache/spark/network Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1818package org .apache .spark .network .client ;
1919
2020public interface StreamCallbackWithID extends StreamCallback {
21- public String getID ();
21+ String getID ();
2222}
Original file line number Diff line number Diff line change @@ -230,8 +230,8 @@ public void onComplete(String streamId) throws IOException {
230230 streamHandler .onComplete (streamId );
231231 callback .onSuccess (ByteBuffer .allocate (0 ));
232232 } catch (Exception ex ) {
233- IOException ioExc = new IOException ("Failure post-processing complete stream; failing " +
234- "this rpc and leaving channel active" );
233+ IOException ioExc = new IOException ("Failure post-processing complete stream;" +
234+ " failing this rpc and leaving channel active" );
235235 callback .onFailure (ioExc );
236236 streamHandler .onFailure (streamId , ioExc );
237237 }
You can’t perform that action at this time.
0 commit comments