From 417b5d8ac0771973f3b57b88a22c2410f5c3df2b Mon Sep 17 00:00:00 2001 From: mjpt777 Date: Tue, 14 Jan 2025 16:45:17 +0000 Subject: [PATCH] [Java] Fix for checkstyle. --- .../src/main/java/io/aeron/test/cluster/TestCluster.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aeron-test-support/src/main/java/io/aeron/test/cluster/TestCluster.java b/aeron-test-support/src/main/java/io/aeron/test/cluster/TestCluster.java index 0acde35084..f08827a940 100644 --- a/aeron-test-support/src/main/java/io/aeron/test/cluster/TestCluster.java +++ b/aeron-test-support/src/main/java/io/aeron/test/cluster/TestCluster.java @@ -1963,7 +1963,7 @@ public void validateRecordingLogWithReplay(final int nodeId) while (position.get() < recordingPosition) { - if (0 == replay.poll(fragmentHandler,10)) + if (0 == replay.poll(fragmentHandler, 10)) { Tests.yield(); }