This is an automated email from the ASF dual-hosted git repository. orpiske pushed a commit to branch camel-3.x in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/camel-3.x by this push: new 1812025da7d (chores) camel-core-model: fixed checkstyle 1812025da7d is described below commit 1812025da7d02747c2d3b8ee618e2fd0707fcfce Author: Otavio Rodolfo Piske <angusyo...@gmail.com> AuthorDate: Mon Jul 31 15:02:46 2023 +0200 (chores) camel-core-model: fixed checkstyle --- .../src/main/java/org/apache/camel/model/SendDefinition.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/core/camel-core-model/src/main/java/org/apache/camel/model/SendDefinition.java b/core/camel-core-model/src/main/java/org/apache/camel/model/SendDefinition.java index c2a1d43636f..ac712f1bf98 100644 --- a/core/camel-core-model/src/main/java/org/apache/camel/model/SendDefinition.java +++ b/core/camel-core-model/src/main/java/org/apache/camel/model/SendDefinition.java @@ -33,8 +33,6 @@ import org.apache.camel.util.URISupport; public abstract class SendDefinition<Type extends ProcessorDefinition<Type>> extends NoOutputDefinition<Type> implements EndpointRequiredDefinition { - @XmlTransient - private String endpointUriToString; @XmlTransient protected Endpoint endpoint; @XmlTransient @@ -44,6 +42,9 @@ public abstract class SendDefinition<Type extends ProcessorDefinition<Type>> ext @Metadata(required = true) protected String uri; + @XmlTransient + private String endpointUriToString; + public SendDefinition() { }