This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push: new c6fb5b40def Polished c6fb5b40def is described below commit c6fb5b40def845a58004e01111a23cb509c75b11 Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Thu Jun 12 09:25:21 2025 +0200 Polished --- .../apache/camel/component/google/pubsub/GooglePubsubEndpoint.java | 7 ++++--- .../apache/camel/dsl/jbang/core/commands/DependencyRuntime.java | 2 -- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/components/camel-google/camel-google-pubsub/src/main/java/org/apache/camel/component/google/pubsub/GooglePubsubEndpoint.java b/components/camel-google/camel-google-pubsub/src/main/java/org/apache/camel/component/google/pubsub/GooglePubsubEndpoint.java index 0af5829bd23..cbae380335f 100644 --- a/components/camel-google/camel-google-pubsub/src/main/java/org/apache/camel/component/google/pubsub/GooglePubsubEndpoint.java +++ b/components/camel-google/camel-google-pubsub/src/main/java/org/apache/camel/component/google/pubsub/GooglePubsubEndpoint.java @@ -82,16 +82,17 @@ public class GooglePubsubEndpoint extends DefaultEndpoint implements EndpointSer defaultValue = "3600") private int maxAckExtensionPeriod = 3600; @UriParam(label = "producer,advanced", - description = "Should message ordering be enabled") + description = "Should message ordering be enabled") private boolean messageOrderingEnabled; @UriParam(label = "producer,advanced", - description = "Pub/Sub endpoint to use. Required when using message ordering, and ensures that messages are received in order even when multiple publishers are used") + description = "Pub/Sub endpoint to use. Required when using message ordering, and ensures that messages are received in order even when multiple publishers are used") private String pubsubEndpoint; @UriParam(label = "producer,advanced", description = "A custom GooglePubsubSerializer to use for serializing message payloads in the producer") @Metadata(autowired = true) private GooglePubsubSerializer serializer; - @UriParam(label = "producer,advanced", description = "A custom RetrySettings to control how the publisher handles retry-able failures") + @UriParam(label = "producer,advanced", + description = "A custom RetrySettings to control how the publisher handles retry-able failures") private RetrySettings retry; public GooglePubsubEndpoint(String uri, Component component) { diff --git a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/DependencyRuntime.java b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/DependencyRuntime.java index 20f6941e472..5107a89b5cd 100644 --- a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/DependencyRuntime.java +++ b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/DependencyRuntime.java @@ -42,8 +42,6 @@ import picocli.CommandLine; showDefaultValues = true) public class DependencyRuntime extends CamelCommand { - protected static final String EXPORT_DIR = CommandLineHelper.CAMEL_JBANG_WORK_DIR + "/export"; - @CommandLine.Option(names = { "--json" }, description = "Output in JSON Format") boolean jsonOutput;