Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
3.2
-
None
-
None
Description
When we set property with escaped characters, after combine propertySets we got them unescaped.
Simple Example
ExtendedProperties props = new ExtendedProperties();
props.setProperty("test", "\\\\\\\\192.168.1.91\\\\test");
props.getProperty("test"); // => \\192.168.1.91\test
ExtendedProperties props2 = new ExtendedProperties();
props2.combine(props);
props.getProperty("test"); // => \192.168.1.91\test – Wrong!
Attachments
Attachments
Issue Links
- is superceded by
-
COLLECTIONS-351 Remove features now supported in the JDK
- Closed