This is an automated email from the ASF dual-hosted git repository. orpiske pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit 8d1d14734e1c85b945d2a4074463c6a1712f9834 Author: Otavio R. Piske <angusyo...@gmail.com> AuthorDate: Tue Jun 20 15:43:44 2023 +0200 (chores) camel-coap: removed unused field Signed-off-by: Otavio R. Piske <angusyo...@gmail.com> --- .../camel-coap/src/main/java/org/apache/camel/coap/CoAPNotifier.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/components/camel-coap/src/main/java/org/apache/camel/coap/CoAPNotifier.java b/components/camel-coap/src/main/java/org/apache/camel/coap/CoAPNotifier.java index 92f83facbd8..42f99df6825 100644 --- a/components/camel-coap/src/main/java/org/apache/camel/coap/CoAPNotifier.java +++ b/components/camel-coap/src/main/java/org/apache/camel/coap/CoAPNotifier.java @@ -21,7 +21,6 @@ import java.util.Optional; import org.apache.camel.Exchange; import org.apache.camel.support.DefaultProducer; -import org.eclipse.californium.core.CoapClient; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -33,7 +32,6 @@ public class CoAPNotifier extends DefaultProducer { private static final Logger LOG = LoggerFactory.getLogger(CoAPNotifier.class); private final CoAPEndpoint endpoint; - private CoapClient client; public CoAPNotifier(CoAPEndpoint endpoint) { super(endpoint);