Skip to content

Commit

Permalink
Use varargs instead of array to allow for easier calling the main met…
Browse files Browse the repository at this point in the history
…hod.
  • Loading branch information
simonharrer committed Jan 9, 2015
1 parent 664084c commit b6b7ce8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/bpellint/ui/BpelLintTool.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

public class BpelLintTool {

public static void main(String[] args) {
public static void main(String... args) {
try {
CommandLineInterpreter input = new CommandLineInterpreter();
CLIOptions options = input.parse(args);
Expand Down

0 comments on commit b6b7ce8

Please sign in to comment.