You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by or...@apache.org on 2023/04/13 12:34:12 UTC

[camel] branch main updated (c6e5f3fb962 -> 411f38b1772)

This is an automated email from the ASF dual-hosted git repository.

orpiske pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


    from c6e5f3fb962 Sync deps
     new dbdc9e10501 (chores) camel-cxf: added missing @Override
     new befc0690702 (chores) camel-http-common: added missing @Override
     new f2ae059d551 (chores) camel-xj: added missing @Override
     new edf2340bfc9 (chores) camel-base-engine: added missing @Override
     new 5b05a69b00b (chores) camel-support: added missing @Override
     new 411f38b1772 (chores) camel-jbang: added missing @Override

The 6 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../org/apache/camel/component/cxf/spring/jaxws/CxfSpringEndpoint.java  | 2 ++
 .../src/main/java/org/apache/camel/http/common/CamelServlet.java        | 1 +
 .../src/main/java/org/apache/camel/component/xj/XJEndpoint.java         | 1 +
 .../org/apache/camel/impl/engine/DefaultCamelBeanPostProcessor.java     | 2 ++
 .../src/main/java/org/apache/camel/support/task/ForegroundTask.java     | 1 +
 .../src/main/java/org/apache/camel/dsl/jbang/core/commands/Run.java     | 1 +
 6 files changed, 8 insertions(+)


[camel] 06/06: (chores) camel-jbang: added missing @Override

Posted by or...@apache.org.
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 411f38b17721f9ab8dbf88198a22d7b010c02b67
Author: Otavio Rodolfo Piske <an...@gmail.com>
AuthorDate: Thu Apr 13 11:31:11 2023 +0200

    (chores) camel-jbang: added missing @Override
---
 .../src/main/java/org/apache/camel/dsl/jbang/core/commands/Run.java      | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/Run.java b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/Run.java
index 8809c60fc63..0e18d1ff481 100644
--- a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/Run.java
+++ b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/Run.java
@@ -1065,6 +1065,7 @@ public class Run extends CamelCommand {
             onDownloadDependency(groupId, artifactId, version);
         }
 
+        @Override
         public void onExtraRepository(String repo) {
             if (!repos.contains(repo)) {
                 writeSettings("repository", repo);


[camel] 01/06: (chores) camel-cxf: added missing @Override

Posted by or...@apache.org.
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 dbdc9e10501d3c787ca10ba0e0d0fb738b96ccef
Author: Otavio Rodolfo Piske <an...@gmail.com>
AuthorDate: Thu Apr 13 11:11:38 2023 +0200

    (chores) camel-cxf: added missing @Override
---
 .../org/apache/camel/component/cxf/spring/jaxws/CxfSpringEndpoint.java  | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/components/camel-cxf/camel-cxf-spring-soap/src/main/java/org/apache/camel/component/cxf/spring/jaxws/CxfSpringEndpoint.java b/components/camel-cxf/camel-cxf-spring-soap/src/main/java/org/apache/camel/component/cxf/spring/jaxws/CxfSpringEndpoint.java
index fb749943b99..b95dfe5be37 100644
--- a/components/camel-cxf/camel-cxf-spring-soap/src/main/java/org/apache/camel/component/cxf/spring/jaxws/CxfSpringEndpoint.java
+++ b/components/camel-cxf/camel-cxf-spring-soap/src/main/java/org/apache/camel/component/cxf/spring/jaxws/CxfSpringEndpoint.java
@@ -280,6 +280,7 @@ public class CxfSpringEndpoint extends CxfEndpoint implements ApplicationContext
         return applicationContext;
     }
 
+    @Override
     public Bus getBus() {
         if (bus == null) {
             bus = createBus(getCamelContext());
@@ -326,6 +327,7 @@ public class CxfSpringEndpoint extends CxfEndpoint implements ApplicationContext
 
             abstractApplicationContext.addApplicationListener((final ApplicationEvent event) -> {
                 new Thread() {
+                    @Override
                     public void run() {
                         if (event instanceof ContextClosedEvent && bus.getState() == BusState.RUNNING) {
 


[camel] 03/06: (chores) camel-xj: added missing @Override

Posted by or...@apache.org.
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 f2ae059d551865cbc45bb9d6531be3ee9d4db6da
Author: Otavio Rodolfo Piske <an...@gmail.com>
AuthorDate: Thu Apr 13 11:11:56 2023 +0200

    (chores) camel-xj: added missing @Override
---
 .../camel-xj/src/main/java/org/apache/camel/component/xj/XJEndpoint.java | 1 +
 1 file changed, 1 insertion(+)

diff --git a/components/camel-xj/src/main/java/org/apache/camel/component/xj/XJEndpoint.java b/components/camel-xj/src/main/java/org/apache/camel/component/xj/XJEndpoint.java
index d0470df003a..94bbb792b54 100644
--- a/components/camel-xj/src/main/java/org/apache/camel/component/xj/XJEndpoint.java
+++ b/components/camel-xj/src/main/java/org/apache/camel/component/xj/XJEndpoint.java
@@ -94,6 +94,7 @@ public class XJEndpoint extends XsltSaxonEndpoint {
     /**
      * Configures the result output depending on the {@link XJEndpoint#transformDirection}
      */
+    @Override
     protected void configureOutput(XsltBuilder xsltBuilder, String output) throws Exception {
         switch (this.transformDirection) {
             case JSON2XML:


[camel] 02/06: (chores) camel-http-common: added missing @Override

Posted by or...@apache.org.
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 befc0690702a121f74bef8b8fa76287aeb77fa23
Author: Otavio Rodolfo Piske <an...@gmail.com>
AuthorDate: Thu Apr 13 11:11:46 2023 +0200

    (chores) camel-http-common: added missing @Override
---
 .../src/main/java/org/apache/camel/http/common/CamelServlet.java         | 1 +
 1 file changed, 1 insertion(+)

diff --git a/components/camel-http-common/src/main/java/org/apache/camel/http/common/CamelServlet.java b/components/camel-http-common/src/main/java/org/apache/camel/http/common/CamelServlet.java
index e8c289c1b55..55365ae9f5b 100644
--- a/components/camel-http-common/src/main/java/org/apache/camel/http/common/CamelServlet.java
+++ b/components/camel-http-common/src/main/java/org/apache/camel/http/common/CamelServlet.java
@@ -89,6 +89,7 @@ public class CamelServlet extends HttpServlet implements HttpRegistryProvider {
         log.trace("servlet '{}' initialized with: async={}", servletName, async);
     }
 
+    @Override
     protected void service(HttpServletRequest request, HttpServletResponse response) {
         log.trace("Service: {}", request);
         try {


[camel] 04/06: (chores) camel-base-engine: added missing @Override

Posted by or...@apache.org.
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 edf2340bfc94b53656f15abd6d50fc7b8e19d6ce
Author: Otavio Rodolfo Piske <an...@gmail.com>
AuthorDate: Thu Apr 13 11:20:47 2023 +0200

    (chores) camel-base-engine: added missing @Override
---
 .../org/apache/camel/impl/engine/DefaultCamelBeanPostProcessor.java     | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/core/camel-base-engine/src/main/java/org/apache/camel/impl/engine/DefaultCamelBeanPostProcessor.java b/core/camel-base-engine/src/main/java/org/apache/camel/impl/engine/DefaultCamelBeanPostProcessor.java
index d2e717ad575..4b0cd1dd31a 100644
--- a/core/camel-base-engine/src/main/java/org/apache/camel/impl/engine/DefaultCamelBeanPostProcessor.java
+++ b/core/camel-base-engine/src/main/java/org/apache/camel/impl/engine/DefaultCamelBeanPostProcessor.java
@@ -95,10 +95,12 @@ public class DefaultCamelBeanPostProcessor implements CamelBeanPostProcessor, Ca
         return enabled;
     }
 
+    @Override
     public boolean isUnbindEnabled() {
         return unbindEnabled;
     }
 
+    @Override
     public void setUnbindEnabled(boolean unbindEnabled) {
         this.unbindEnabled = unbindEnabled;
     }


[camel] 05/06: (chores) camel-support: added missing @Override

Posted by or...@apache.org.
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 5b05a69b00bd700ab9f75d3c5ac5ce5875a6a6e8
Author: Otavio Rodolfo Piske <an...@gmail.com>
AuthorDate: Thu Apr 13 11:21:30 2023 +0200

    (chores) camel-support: added missing @Override
---
 .../src/main/java/org/apache/camel/support/task/ForegroundTask.java      | 1 +
 1 file changed, 1 insertion(+)

diff --git a/core/camel-support/src/main/java/org/apache/camel/support/task/ForegroundTask.java b/core/camel-support/src/main/java/org/apache/camel/support/task/ForegroundTask.java
index 41730b64e41..a522d92d182 100644
--- a/core/camel-support/src/main/java/org/apache/camel/support/task/ForegroundTask.java
+++ b/core/camel-support/src/main/java/org/apache/camel/support/task/ForegroundTask.java
@@ -45,6 +45,7 @@ public class ForegroundTask implements BlockingTask {
          * @param  name the name
          * @return      an instance of this builder
          */
+        @Override
         public ForegroundTaskBuilder withName(String name) {
             this.name = name;