Addressing checkstyle error

Signed-off-by: Joakim Erdfelt <joakim.erdfelt@gmail.com>
This commit is contained in:
Joakim Erdfelt 2020-08-20 13:31:17 -05:00
parent 5a0f18513b
commit 47229e0190
No known key found for this signature in database
GPG Key ID: 2D0E1FB8FE4B68B4
1 changed files with 2 additions and 2 deletions

View File

@ -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