Skip to content

Commit

Permalink
Fix Checkstyle violation
Browse files Browse the repository at this point in the history
  • Loading branch information
artembilan committed Oct 26, 2021
1 parent 00bf6ae commit 0535760
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ void testWithCallbackFailureFunctional() throws Exception {
final CountDownLatch latch = new CountDownLatch(1);
final AtomicReference<SendResult<Integer, String>> theResult = new AtomicReference<>();
AtomicReference<String> value = new AtomicReference<>();
future.addCallback(result -> {}, (KafkaFailureCallback<Integer, String>) ex -> {
future.addCallback(result -> { }, (KafkaFailureCallback<Integer, String>) ex -> {
ProducerRecord<Integer, String> failed = ex.getFailedProducerRecord();
value.set(failed.value());
latch.countDown();
Expand Down

0 comments on commit 0535760

Please sign in to comment.