Fix "cleanup" breaking plugin again

This commit is contained in:
Jesse Boyd 2016-03-29 17:13:19 +11:00
parent 30dc20b3b3
commit 5275d4ec62

View File

@ -537,12 +537,16 @@ public class MemorySection implements ConfigurationSection {
@Override @Override
public List<String> getStringList(String path) { public List<String> getStringList(String path) {
List<?> list = getList(path); final List<?> list = getList(path);
List<String> result = new ArrayList<>(); if (list == null) {
return new ArrayList<>(0);
}
for (Object object : list) { final List<String> result = new ArrayList<>();
if ((object instanceof String) || isPrimitiveWrapper(object)) {
for (final Object object : list) {
if ((object instanceof String) || (isPrimitiveWrapper(object))) {
result.add(String.valueOf(object)); result.add(String.valueOf(object));
} }
} }