From b3dba476922dd01b3b4577e492e61b4d7bf23ccb Mon Sep 17 00:00:00 2001 From: Debjit Chattopadhyay Date: Mon, 19 Jan 2026 12:31:57 +0530 Subject: [PATCH] bump spring to latest v7.0.2 --- pom.xml | 2 +- .../springframework/extensions/config/xml/XMLConfigService.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index d5bb918c..cc501788 100644 --- a/pom.xml +++ b/pom.xml @@ -121,7 +121,7 @@ - 6.2.8 + 7.0.2 17 ${java.version} ${java.version} diff --git a/spring-surf-core/spring-surf-core-configservice/src/main/java/org/springframework/extensions/config/xml/XMLConfigService.java b/spring-surf-core/spring-surf-core-configservice/src/main/java/org/springframework/extensions/config/xml/XMLConfigService.java index fdb6fde3..1a185e41 100644 --- a/spring-surf-core/spring-surf-core-configservice/src/main/java/org/springframework/extensions/config/xml/XMLConfigService.java +++ b/spring-surf-core/spring-surf-core-configservice/src/main/java/org/springframework/extensions/config/xml/XMLConfigService.java @@ -609,7 +609,7 @@ public static class PlaceholderResolvingStringValueResolver implements StringVal public PlaceholderResolvingStringValueResolver(Properties props, String placeholderPrefix, String placeholderSuffix, String valueSeparator, boolean ignoreUnresolvablePlaceholders) { - this.helper = new PropertyPlaceholderHelper(placeholderPrefix, placeholderSuffix, valueSeparator, ignoreUnresolvablePlaceholders); + this.helper = new PropertyPlaceholderHelper(placeholderPrefix, placeholderSuffix, valueSeparator, null, ignoreUnresolvablePlaceholders); this.props = props; }