Skip to content

Commit

Permalink
rm unused params
Browse files Browse the repository at this point in the history
  • Loading branch information
pbloem committed Sep 14, 2016
1 parent 9d4952d commit 401e722
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ public class ClassExperiment
public Map<String, String> map = null;


public void main(String[] args)
public void main()
throws IOException
{
tic();
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/nl/peterbloem/motive/exec/Run.java
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ public static void main(String[] args)
exp.numInstances = classNumInstances;

try {
exp.main(args);
exp.main();
} catch (IOException e) {
throw new RuntimeException(e);
}
Expand Down

0 comments on commit 401e722

Please sign in to comment.