From b54bde72e9521cd7af9e05893bcb47542c3dbe15 Mon Sep 17 00:00:00 2001 From: wind57 Date: Sat, 29 Mar 2025 07:00:32 +0200 Subject: [PATCH] clean-up Signed-off-by: wind57 --- .../kubernetes/commons/config/reload/ConfigReloadUtil.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/spring-cloud-kubernetes-commons/src/main/java/org/springframework/cloud/kubernetes/commons/config/reload/ConfigReloadUtil.java b/spring-cloud-kubernetes-commons/src/main/java/org/springframework/cloud/kubernetes/commons/config/reload/ConfigReloadUtil.java index cf1dbd92..c8df2821 100644 --- a/spring-cloud-kubernetes-commons/src/main/java/org/springframework/cloud/kubernetes/commons/config/reload/ConfigReloadUtil.java +++ b/spring-cloud-kubernetes-commons/src/main/java/org/springframework/cloud/kubernetes/commons/config/reload/ConfigReloadUtil.java @@ -27,7 +27,6 @@ import org.apache.commons.logging.LogFactory; import org.springframework.cloud.bootstrap.config.BootstrapPropertySource; import org.springframework.cloud.bootstrap.config.PropertySourceLocator; import org.springframework.cloud.kubernetes.commons.config.MountConfigMapPropertySource; -import org.springframework.cloud.kubernetes.commons.config.SecretsPropertySource; import org.springframework.core.env.CompositePropertySource; import org.springframework.core.env.ConfigurableEnvironment; import org.springframework.core.env.MapPropertySource; @@ -180,8 +179,6 @@ public final class ConfigReloadUtil { for (int i = 0; i < k8sSources.size(); i++) { MapPropertySource k8sSource = k8sSources.get(i); MapPropertySource appSource = appSources.get(i); - System.out.println("k8sSource (abc): " + k8sSource.getSource()); - System.out.println("appSource (abc): " + appSource.getSource()); if (changed(k8sSource, appSource)) { LOG.debug(() -> "found change in : " + k8sSource); return true;