correct java main method signature, otherwise performance can't be run in IDE

This commit is contained in:
stone.shi 2018-10-17 22:16:13 +08:00
parent 6cabd68be5
commit 580ac4772d

View File

@ -97,7 +97,7 @@ public class MappingFrameworksPerformance {
sourceCode = new SourceCode("This is source code!"); sourceCode = new SourceCode("This is source code!");
} }
public void main(String[] args) throws IOException, RunnerException { public static void main(String[] args) throws IOException, RunnerException {
org.openjdk.jmh.Main.main(args); org.openjdk.jmh.Main.main(args);
} }