Ã[BAEL-2996] Used qualified class for benchmarking

This commit is contained in:
dupirefr 2019-06-22 11:40:10 +02:00
parent 327fc24a4b
commit bc8fbaf579
1 changed files with 1 additions and 3 deletions

View File

@ -1,11 +1,9 @@
package com.baeldung.matrices;
import org.openjdk.jmh.Main;
public class MatrixMultiplicationBenchmarking {
public static void main(String[] args) throws Exception {
Main.main(args);
org.openjdk.jmh.Main.main(args);
}
}