You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by nf...@apache.org on 2022/06/24 16:17:21 UTC

[camel] branch main updated: (chores) camel-kubernetes: fixed checkstyle violations

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

nfilotto 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 23c2048a268 (chores) camel-kubernetes: fixed checkstyle violations
23c2048a268 is described below

commit 23c2048a268138bed7b70f183d15413a66e0fefd
Author: Nicolas Filotto <nf...@talend.com>
AuthorDate: Fri Jun 24 18:17:07 2022 +0200

    (chores) camel-kubernetes: fixed checkstyle violations
---
 .../camel/component/kubernetes/properties/BasePropertiesFunction.java  | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/components/camel-kubernetes/src/main/java/org/apache/camel/component/kubernetes/properties/BasePropertiesFunction.java b/components/camel-kubernetes/src/main/java/org/apache/camel/component/kubernetes/properties/BasePropertiesFunction.java
index c78fbcd9e37..d132c6d984f 100644
--- a/components/camel-kubernetes/src/main/java/org/apache/camel/component/kubernetes/properties/BasePropertiesFunction.java
+++ b/components/camel-kubernetes/src/main/java/org/apache/camel/component/kubernetes/properties/BasePropertiesFunction.java
@@ -46,8 +46,6 @@ import org.slf4j.LoggerFactory;
  */
 abstract class BasePropertiesFunction extends ServiceSupport implements PropertiesFunction, CamelContextAware {
 
-    private static final Logger LOG = LoggerFactory.getLogger(BasePropertiesFunction.class);
-
     // keys in application.properties for mount paths
     public static final String MOUNT_PATH_CONFIGMAPS = "org.apache.camel.component.kubernetes.properties.mount-path-configmaps";
     public static final String MOUNT_PATH_SECRETS = "org.apache.camel.component.kubernetes.properties.mount-path-secrets";
@@ -55,6 +53,7 @@ abstract class BasePropertiesFunction extends ServiceSupport implements Properti
     // use camel-k ENV for mount paths
     public static final String ENV_MOUNT_PATH_CONFIGMAPS = "camel.k.mount-path.configmaps";
     public static final String ENV_MOUNT_PATH_SECRETS = "camel.k.mount-path.secrets";
+    private static final Logger LOG = LoggerFactory.getLogger(BasePropertiesFunction.class);
 
     private CamelContext camelContext;
     private KubernetesClient client;