Skip to content

Commit

Permalink
fix gjf
Browse files Browse the repository at this point in the history
Signed-off-by: Oleh Dokuka <oleh.dokuka@icloud.com>
  • Loading branch information
OlegDokuka committed Feb 23, 2024
1 parent 748effe commit a0eee7b
Showing 1 changed file with 2 additions and 3 deletions.
Expand Up @@ -4,7 +4,6 @@
import io.netty.buffer.UnpooledByteBufAllocator;
import io.rsocket.core.StressSubscriber;
import io.rsocket.utils.FastLogger;

import java.util.Arrays;
import java.util.ConcurrentModificationException;
import org.openjdk.jcstress.annotations.Actor;
Expand Down Expand Up @@ -1726,8 +1725,8 @@ public void arbiter(L_Result r) {

static void checkOutcomes(Object instance, String result, Logger logger) {
if (Arrays.stream(instance.getClass().getDeclaredAnnotationsByType(Outcome.class))
.flatMap(o -> Arrays.stream(o.id()))
.noneMatch(s -> s.equalsIgnoreCase(result))) {
.flatMap(o -> Arrays.stream(o.id()))
.noneMatch(s -> s.equalsIgnoreCase(result))) {
throw new RuntimeException(result + " " + logger);
}
}
Expand Down

0 comments on commit a0eee7b

Please sign in to comment.