From 68263618dbfec622a90de25e7bdb3aa19e553011 Mon Sep 17 00:00:00 2001 From: Christian Tzolov Date: Tue, 22 Jun 2021 10:20:25 +0200 Subject: [PATCH] checkstyle fix --- .../trend/TwitterTrendLocationProcessorIntegrationTests.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/applications/processor/twitter-trend-processor/src/test/java/org/springframework/cloud/stream/app/processor/twitter/trend/TwitterTrendLocationProcessorIntegrationTests.java b/applications/processor/twitter-trend-processor/src/test/java/org/springframework/cloud/stream/app/processor/twitter/trend/TwitterTrendLocationProcessorIntegrationTests.java index 154b81fa..304036f5 100644 --- a/applications/processor/twitter-trend-processor/src/test/java/org/springframework/cloud/stream/app/processor/twitter/trend/TwitterTrendLocationProcessorIntegrationTests.java +++ b/applications/processor/twitter-trend-processor/src/test/java/org/springframework/cloud/stream/app/processor/twitter/trend/TwitterTrendLocationProcessorIntegrationTests.java @@ -88,7 +88,9 @@ public class TwitterTrendLocationProcessorIntegrationTests { @AfterEach public void stopServer() { mockServer.stop(); - while (!mockServer.hasStopped(3,100L, TimeUnit.MILLISECONDS)){} + while (!mockServer.hasStopped(3, 100L, TimeUnit.MILLISECONDS)) { + // Do nothing + } } @Test