Details
-
Bug
-
Resolution: Unresolved
-
Minor
-
None
-
1.0.13
-
Java, Spring
Description
Variable substitution doesn't work correctly if the variable is an empty string. Example from a logback.xml file:
<property name="MY_PASSWORD" value=""/>
...
<password>${MY_PASSWORD}</password>
The substitution in the password element didn't work correctly. Using an empty password element instead of variable substitution solved the problem:
<password></password>