Menu

#51 section.getAll is buggy

v1.0 (example)
open
nobody
1
2015-06-03
2015-06-03
No

My ini file

[Test1]
key1=somedata1
key2=somedata2
samekey=anotherdata1
samekey=anotherdata2

Now in the above example i want to get all data with the SAME key name

code

Section sec = ini.getIniSection("Test1");
System.out.println(sec.getAll("samekey"));

output

expecting --> ["anotherdata1", "anotherdata2"]
Actual --> ["anotherdata2"]

Discussion


Log in to post a comment.