Skip to content

Commit b16ef07

Browse files
rccarpermillems
authored andcommitted
Fixing checkstyle warning for 'TLS' being more than 2 consecutive capital letters
1 parent 53886c0 commit b16ef07

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
@Measurement(iterations = 5, time = 10, timeUnit = TimeUnit.SECONDS)
5757
@Fork(2) // To reduce difference between each run
5858
@BenchmarkMode(Mode.Throughput)
59-
public class AwsCrtClientNonTLSBenchmark implements SdkHttpClientBenchmark {
59+
public class AwsCrtClientNonTlsBenchmark implements SdkHttpClientBenchmark {
6060

6161
private MockServer mockServer;
6262
private SdkAsyncHttpClient sdkHttpClient;
@@ -120,7 +120,7 @@ public void sequentialApiCall(Blackhole blackhole) {
120120

121121
public static void main(String... args) throws Exception {
122122
Options opt = new OptionsBuilder()
123-
.include(AwsCrtClientNonTLSBenchmark.class.getSimpleName())
123+
.include(AwsCrtClientNonTlsBenchmark.class.getSimpleName())
124124
.addProfiler(StackProfiler.class)
125125
.build();
126126
Collection<RunResult> run = new Runner(opt).run();

0 commit comments

Comments
 (0)