diff --git a/src/main/java/nl/peterbloem/motive/exec/ClassExperiment.java b/src/main/java/nl/peterbloem/motive/exec/ClassExperiment.java index 81e60da..41fc1d0 100644 --- a/src/main/java/nl/peterbloem/motive/exec/ClassExperiment.java +++ b/src/main/java/nl/peterbloem/motive/exec/ClassExperiment.java @@ -129,7 +129,7 @@ public class ClassExperiment public Map map = null; - public void main(String[] args) + public void main() throws IOException { tic(); diff --git a/src/main/java/nl/peterbloem/motive/exec/Run.java b/src/main/java/nl/peterbloem/motive/exec/Run.java index 021c945..4f3cfd2 100644 --- a/src/main/java/nl/peterbloem/motive/exec/Run.java +++ b/src/main/java/nl/peterbloem/motive/exec/Run.java @@ -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); }