mirror of
https://github.com/spring-projects/spring-framework
synced 2026-06-08 17:33:33 +00:00
Consistently declare ignoreUnresolvablePlaceholders as last argument
This commit is contained in:
+2
-2
@@ -40,12 +40,12 @@ public abstract class ServletContextPropertyUtils {
|
||||
private static final PropertyPlaceholderHelper strictHelper =
|
||||
new PropertyPlaceholderHelper(SystemPropertyUtils.PLACEHOLDER_PREFIX,
|
||||
SystemPropertyUtils.PLACEHOLDER_SUFFIX, SystemPropertyUtils.VALUE_SEPARATOR,
|
||||
false, SystemPropertyUtils.ESCAPE_CHARACTER);
|
||||
SystemPropertyUtils.ESCAPE_CHARACTER, false);
|
||||
|
||||
private static final PropertyPlaceholderHelper nonStrictHelper =
|
||||
new PropertyPlaceholderHelper(SystemPropertyUtils.PLACEHOLDER_PREFIX,
|
||||
SystemPropertyUtils.PLACEHOLDER_SUFFIX, SystemPropertyUtils.VALUE_SEPARATOR,
|
||||
true, SystemPropertyUtils.ESCAPE_CHARACTER);
|
||||
SystemPropertyUtils.ESCAPE_CHARACTER, true);
|
||||
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user