You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2020/07/13 15:48:20 UTC

[camel] branch master updated: Camel-Docker: Fixed CS

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 4b46293  Camel-Docker: Fixed CS
4b46293 is described below

commit 4b46293e8709914e4f285d712ab2048a3945fa39
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Jul 13 17:47:53 2020 +0200

    Camel-Docker: Fixed CS
---
 .../component/docker/it/FakeDockerCmdExecFactory.java  | 18 +++++++++---------
 .../camel/builder/endpoint/StaticEndpointBuilders.java |  8 ++++----
 2 files changed, 13 insertions(+), 13 deletions(-)

diff --git a/components/camel-docker/src/test/java/org/apache/camel/component/docker/it/FakeDockerCmdExecFactory.java b/components/camel-docker/src/test/java/org/apache/camel/component/docker/it/FakeDockerCmdExecFactory.java
index 04a4a65..13000cb 100644
--- a/components/camel-docker/src/test/java/org/apache/camel/component/docker/it/FakeDockerCmdExecFactory.java
+++ b/components/camel-docker/src/test/java/org/apache/camel/component/docker/it/FakeDockerCmdExecFactory.java
@@ -478,13 +478,13 @@ public class FakeDockerCmdExecFactory implements DockerCmdExecFactory {
         return null;
     }
 
-	@Override
-	public ResizeContainerCmd.Exec createResizeContainerCmdExec() {
-		return null;
-	}
-
-	@Override
-	public ResizeExecCmd.Exec createResizeExecCmdExec() {
-		return null;
-	}
+    @Override
+    public ResizeContainerCmd.Exec createResizeContainerCmdExec() {
+        return null;
+    }
+
+    @Override
+    public ResizeExecCmd.Exec createResizeExecCmdExec() {
+        return null;
+    }
 }
diff --git a/core/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/StaticEndpointBuilders.java b/core/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/StaticEndpointBuilders.java
index 8bbc0d5..9a36502 100644
--- a/core/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/StaticEndpointBuilders.java
+++ b/core/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/StaticEndpointBuilders.java
@@ -4465,7 +4465,7 @@ public class StaticEndpointBuilders {
      * 
      * @param path dnsType
      */
-    static org.apache.camel.builder.endpoint.dsl.DnsEndpointBuilderFactory.DnsEndpointBuilder dns(
+    public static org.apache.camel.builder.endpoint.dsl.DnsEndpointBuilderFactory.DnsEndpointBuilder dns(
             String path) {
         return org.apache.camel.builder.endpoint.dsl.DnsEndpointBuilderFactory.endpointBuilder("dns", path);
     }
@@ -4487,7 +4487,7 @@ public class StaticEndpointBuilders {
      * instead of the default name
      * @param path dnsType
      */
-    static org.apache.camel.builder.endpoint.dsl.DnsEndpointBuilderFactory.DnsEndpointBuilder dns(
+    public static org.apache.camel.builder.endpoint.dsl.DnsEndpointBuilderFactory.DnsEndpointBuilder dns(
             String componentName,
             String path) {
         return org.apache.camel.builder.endpoint.dsl.DnsEndpointBuilderFactory.endpointBuilder(componentName, path);
@@ -4515,7 +4515,7 @@ public class StaticEndpointBuilders {
      * 
      * @param path operation
      */
-    public static org.apache.camel.builder.endpoint.dsl.DockerEndpointBuilderFactory.DockerEndpointBuilder docker(
+    static org.apache.camel.builder.endpoint.dsl.DockerEndpointBuilderFactory.DockerEndpointBuilder docker(
             String path) {
         return org.apache.camel.builder.endpoint.dsl.DockerEndpointBuilderFactory.endpointBuilder("docker", path);
     }
@@ -4544,7 +4544,7 @@ public class StaticEndpointBuilders {
      * instead of the default name
      * @param path operation
      */
-    public static org.apache.camel.builder.endpoint.dsl.DockerEndpointBuilderFactory.DockerEndpointBuilder docker(
+    static org.apache.camel.builder.endpoint.dsl.DockerEndpointBuilderFactory.DockerEndpointBuilder docker(
             String componentName,
             String path) {
         return org.apache.camel.builder.endpoint.dsl.DockerEndpointBuilderFactory.endpointBuilder(componentName, path);