This is an automated email from the ASF dual-hosted git repository.
acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push:
new bfd14cf Fixed CS for Camel-Kafka
bfd14cf is described below
commit bfd14cf7b0519e3d8aaabe88d9f615526900d340
Author: Andrea Cosentino <ancosen@gmail.com>
AuthorDate: Tue Aug 6 16:56:07 2019 +0200
Fixed CS for Camel-Kafka
---
.../org/apache/camel/component/kafka/embedded/SystemTime.java | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/components/camel-kafka/src/test/java/org/apache/camel/component/kafka/embedded/SystemTime.java
b/components/camel-kafka/src/test/java/org/apache/camel/component/kafka/embedded/SystemTime.java
index 9d89610..9849da7 100644
--- a/components/camel-kafka/src/test/java/org/apache/camel/component/kafka/embedded/SystemTime.java
+++ b/components/camel-kafka/src/test/java/org/apache/camel/component/kafka/embedded/SystemTime.java
@@ -46,8 +46,8 @@ class SystemTime implements Time {
return 0;
}
- @Override
- public void waitObject(Object obj, Supplier<Boolean> condition, long timeoutMs) throws
InterruptedException {
- // NOOP
- }
+ @Override
+ public void waitObject(Object obj, Supplier<Boolean> condition, long timeoutMs)
throws InterruptedException {
+ // NOOP
+ }
}
|