From d3ee7a3465e32e896d436265acaddcbab3af5804 Mon Sep 17 00:00:00 2001 From: buildmaster Date: Mon, 12 Sep 2022 08:49:36 +0000 Subject: [PATCH] Bumping versions --- .../cloud/consul/config/ConsulPropertySource.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/spring-cloud-consul-config/src/main/java/org/springframework/cloud/consul/config/ConsulPropertySource.java b/spring-cloud-consul-config/src/main/java/org/springframework/cloud/consul/config/ConsulPropertySource.java index 9f414500..46de5008 100644 --- a/spring-cloud-consul-config/src/main/java/org/springframework/cloud/consul/config/ConsulPropertySource.java +++ b/spring-cloud-consul-config/src/main/java/org/springframework/cloud/consul/config/ConsulPropertySource.java @@ -75,12 +75,12 @@ public class ConsulPropertySource extends EnumerablePropertySource final List values = response.getValue(); ConsulConfigProperties.Format format = this.configProperties.getFormat(); switch (format) { - case KEY_VALUE: - parsePropertiesInKeyValueFormat(values); - break; - case PROPERTIES: - case YAML: - parsePropertiesWithNonKeyValueFormat(values, format); + case KEY_VALUE: + parsePropertiesInKeyValueFormat(values); + break; + case PROPERTIES: + case YAML: + parsePropertiesWithNonKeyValueFormat(values, format); } }