mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-22 13:16: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
|
||||
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) {
|
||||
if ((object instanceof String) || isPrimitiveWrapper(object)) {
|
||||
final List<String> result = new ArrayList<>();
|
||||
|
||||
for (final Object object : list) {
|
||||
if ((object instanceof String) || (isPrimitiveWrapper(object))) {
|
||||
result.add(String.valueOf(object));
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user