mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-22 21:26:45 +01:00
Fix "cleanup" breaking plugin again
This commit is contained in:
parent
30dc20b3b3
commit
5275d4ec62
@ -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));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user