13
0
geforkt von Mirrors/Paper

Adds suppport for node lists. Tested and verified in CraftIRC

By: Animosity <nullcline@gmail.com>
Dieser Commit ist enthalten in:
Bukkit/Spigot 2011-02-07 03:20:59 +08:00
Ursprung ed824523e8
Commit d7e0bed36b

Datei anzeigen

@ -196,6 +196,7 @@ public class ConfigurationNode {
*/
@SuppressWarnings("unchecked")
public List<String> getKeys(String path) {
if (path == null) return new ArrayList<String>(root.keySet());
Object o = getProperty(path);
if (o == null) {
return null;