Skip to content

Commit

Permalink
Indent fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gaborgsomogyi committed Jun 14, 2018
1 parent 8a8067e commit 5a737d7
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions launcher/src/main/java/org/apache/spark/launcher/Main.java
Expand Up @@ -104,10 +104,9 @@ public static void main(String[] argsArray) throws Exception {
* If printLaunchCommand is set then the commands will be printed to the stderr.
*/
private static List<String> buildCommand(
AbstractCommandBuilder builder,
Map<String, String> env,
boolean printLaunchCommand)
throws IOException, IllegalArgumentException {
AbstractCommandBuilder builder,
Map<String, String> env,
boolean printLaunchCommand) throws IOException, IllegalArgumentException {
List<String> cmd = builder.buildCommand(env);
if (printLaunchCommand) {
System.err.println("Spark Command: " + join(" ", cmd));
Expand Down

0 comments on commit 5a737d7

Please sign in to comment.