Skip to content

Commit 88678ba

Browse files
fix(checkstyle): resolve remarks in JsonBodyHandlerUnitTest
1 parent 5bfe852 commit 88678ba

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/test/java/dev/eidentification/bankid/internal/http/JsonBodyHandlerUnitTest.java

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,9 +164,13 @@ private static <T> CompletableFuture<T> feed(final HttpResponse.BodySubscriber<T
164164

165165
private static class NoopSubscription implements java.util.concurrent.Flow.Subscription {
166166
@Override
167-
public void request(long n) { /* no-op */ }
167+
public void request(final long n) {
168+
// no-op
169+
}
168170

169171
@Override
170-
public void cancel() { /* no-op */ }
172+
public void cancel() {
173+
// no-op
174+
}
171175
}
172176
}

0 commit comments

Comments
 (0)