From 47229e019014a812957f18b06ce39183626bbdfb Mon Sep 17 00:00:00 2001 From: Joakim Erdfelt Date: Thu, 20 Aug 2020 13:31:17 -0500 Subject: [PATCH] Addressing checkstyle error Signed-off-by: Joakim Erdfelt --- .../java/org/eclipse/jetty/logging/jmh/IndentBenchmark.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/jetty-jmh/src/main/java/org/eclipse/jetty/logging/jmh/IndentBenchmark.java b/tests/jetty-jmh/src/main/java/org/eclipse/jetty/logging/jmh/IndentBenchmark.java index 913716707c4..3a79318a9bc 100644 --- a/tests/jetty-jmh/src/main/java/org/eclipse/jetty/logging/jmh/IndentBenchmark.java +++ b/tests/jetty-jmh/src/main/java/org/eclipse/jetty/logging/jmh/IndentBenchmark.java @@ -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