Skip to content
This repository was archived by the owner on Feb 4, 2023. It is now read-only.

Commit 483e41a

Browse files
author
Benoit Guerin
committed
Respect Java orders convention
1 parent 4c4264f commit 483e41a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/main/java/com/github/casperjs/casperjsrunner/cmd/CommandLineComputer.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,6 @@
88

99
public class CommandLineComputer {
1010

11-
public static CommandLine computeCmdLine(final Parameters parameters) {
12-
return INSTANCE.compute(parameters);
13-
}
14-
1511
private static final CommandLineComputer INSTANCE = new CommandLineComputer();
1612

1713
private final List<CommandLineAppender> appenders;
@@ -37,4 +33,8 @@ CommandLine compute(final Parameters parameters) {
3733
return cmdLine;
3834
}
3935

36+
public static CommandLine computeCmdLine(final Parameters parameters) {
37+
return INSTANCE.compute(parameters);
38+
}
39+
4040
}

0 commit comments

Comments
 (0)