mirror of
https://github.com/essentials/Essentials.git
synced 2025-08-11 17:15:07 +02:00
fix for an iterator error if there is only one element in the array.
This commit is contained in:
@@ -207,9 +207,10 @@ public class BukkitPermissions {
|
|||||||
String node = (String) itr.next();
|
String node = (String) itr.next();
|
||||||
String b = node.charAt(0) == '-'? node.substring(1):node;
|
String b = node.charAt(0) == '-'? node.substring(1):node;
|
||||||
|
|
||||||
|
// Insert the parent node before the child
|
||||||
if (allchildren.containsKey(b)) {
|
if (allchildren.containsKey(b)) {
|
||||||
itr.previous();
|
itr.set(key);
|
||||||
itr.add(key);
|
itr.add(node);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user