Skip to content

Commit 5ff2834

Browse files
auto commit
1 parent 3603352 commit 5ff2834

File tree

1 file changed

+4
-9
lines changed
  • db-esdk-performance-testing/benchmarks/java/src/main/java/com/amazon/esdk/benchmark

1 file changed

+4
-9
lines changed

db-esdk-performance-testing/benchmarks/java/src/main/java/com/amazon/esdk/benchmark/ESDKBenchmark.java

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -335,13 +335,8 @@ public List<TestResult> runAllBenchmarks() {
335335
return allResults;
336336
}
337337

338-
public static final class BatchPutGetResult {
339-
public final double putLatencyMs;
340-
public final double getLatencyMs;
341-
342-
public BatchPutGetResult(final double putLatencyMs, final double getLatencyMs) {
343-
this.putLatencyMs = putLatencyMs;
344-
this.getLatencyMs = getLatencyMs;
345-
}
346-
}
338+
public record BatchPutGetResult(
339+
double putLatencyMs,
340+
double getLatencyMs
341+
) {}
347342
}

0 commit comments

Comments
 (0)