Skip to content

Commit 80ddcb4

Browse files
committed
fix (whitespace) FileTabCharacter: Line contains a tab character.
1 parent cc7804f commit 80ddcb4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

launcher/src/main/java/org/apache/spark/launcher/LauncherServer.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -337,10 +337,10 @@ public void close() throws IOException {
337337
}
338338
super.close();
339339
if (handle != null) {
340-
if (!handle.getState().isFinal()) {
341-
LOG.log(Level.WARNING, "Lost connection to spark application.");
342-
handle.setState(SparkAppHandle.State.LOST);
343-
}
340+
if (!handle.getState().isFinal()) {
341+
LOG.log(Level.WARNING, "Lost connection to spark application.");
342+
handle.setState(SparkAppHandle.State.LOST);
343+
}
344344
handle.disconnect();
345345
}
346346
}

0 commit comments

Comments
 (0)