Lists don't seem to work whean loading INI files
------------------------------------------------
Key: CONFIGURATION-474
URL: https://issues.apache.org/jira/browse/CONFIGURATION-474
Project: Commons Configuration
Issue Type: Bug
Affects Versions: 1.7
Reporter: Charles Leclerc
Priority: Minor
After loading an INI file with HierarchicalINIConfiguration, getList() and
getStringArray() alaways return 1-size sets even if the parameter is in the
right form in the file. To reproduce one only need to create a small INI file
with the following content :
key=val1,val2,val3
The following code returns a 1-sized list :
HierarchicalINIConfiguration c = new HierarchicalINIConfiguration();
c.load("test.ini");
List<?> l = c.getList("val");
=> l = ["val1,val2,val3"] instead of ["val1","val2","val3"]
I tried to change the list delimiter, but it didn't work. Maybe it's expected,
but I haven't found anything in the doc.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira