File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed
spring-core/src/main/java/org/springframework/util Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -142,7 +142,6 @@ protected String parseStringValue(
142
142
}
143
143
// Recursive invocation, parsing placeholders contained in the placeholder key.
144
144
placeholder = parseStringValue (placeholder , placeholderResolver , visitedPlaceholders );
145
-
146
145
// Now obtain the value for the fully resolved key...
147
146
String propVal = placeholderResolver .resolvePlaceholder (placeholder );
148
147
if (propVal == null && this .valueSeparator != null ) {
@@ -172,9 +171,8 @@ else if (this.ignoreUnresolvablePlaceholders) {
172
171
}
173
172
else {
174
173
throw new IllegalArgumentException ("Could not resolve placeholder '" +
175
- placeholder + "'" + " in string value [" + strVal + "] " );
174
+ placeholder + "'" + " in string value \" " + strVal + "\" " );
176
175
}
177
-
178
176
visitedPlaceholders .remove (originalPlaceholder );
179
177
}
180
178
else {
You can’t perform that action at this time.
0 commit comments