Addressing checkstyle error
Signed-off-by: Joakim Erdfelt <joakim.erdfelt@gmail.com>
This commit is contained in:
parent
5a0f18513b
commit
47229e0190
|
@ -63,14 +63,14 @@ public class IndentBenchmark
|
|||
@BenchmarkMode(Mode.Throughput)
|
||||
public void testStringRepeatSmall(Blackhole blackhole)
|
||||
{
|
||||
blackhole.consume(" " .repeat(SMALL));
|
||||
blackhole.consume(" ".repeat(SMALL));
|
||||
}
|
||||
|
||||
@Benchmark
|
||||
@BenchmarkMode(Mode.Throughput)
|
||||
public void testStringRepeatLarge(Blackhole blackhole)
|
||||
{
|
||||
blackhole.consume(" " .repeat(LARGE));
|
||||
blackhole.consume(" ".repeat(LARGE));
|
||||
}
|
||||
|
||||
public static void main(String[] args) throws RunnerException
|
||||
|
|
Loading…
Reference in New Issue