Merge pull request #5477 from shidongwa/master

correct java main method signature, otherwise performance can't be ru…
This commit is contained in:
Loredana Crusoveanu 2018-11-16 15:21:09 +02:00 committed by GitHub
commit eaa890aead
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ public class MappingFrameworksPerformance {
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);
}