We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8b22f71 + 98f2e68 commit 82b364dCopy full SHA for 82b364d
core/src/main/java/com/opensymphony/xwork2/config/providers/EnvsValueSubstitutor.java
@@ -46,7 +46,7 @@ public EnvsValueSubstitutor() {
46
public String substitute(String value) {
47
LOG.debug("Substituting value {} with proper System variable or environment variable", value);
48
49
- String substituted = sysStrSubstitutor.replace(value);
50
- return envStrSubstitutor.replace(substituted);
+ String substituted = envStrSubstitutor.replace(value);
+ return sysStrSubstitutor.replace(substituted);
51
}
52
0 commit comments