13 lines
139 B
Java
Raw Normal View History

2017-06-21 23:56:07 +05:30
package com.baeldung;
import org.openjdk.jmh.annotations.Benchmark;
public class BenchMark {
@Benchmark
public void init() {
}
}