mirror of
https://github.com/EssentialsX/Essentials.git
synced 2024-12-23 17:47:34 +01:00
Remove attachments before clearing
This commit is contained in:
parent
27ff43c0ac
commit
eacb847305
@ -103,6 +103,15 @@ public class BukkitPermissions {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void reset() {
|
public void reset() {
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Remove all attachments.
|
||||||
|
*/
|
||||||
|
for (String key : attachments.keySet()) {
|
||||||
|
attachments.get(key).remove();
|
||||||
|
attachments.remove(key);
|
||||||
|
}
|
||||||
|
|
||||||
attachments = new WeakHashMap<String, PermissionAttachment>();
|
attachments = new WeakHashMap<String, PermissionAttachment>();
|
||||||
|
|
||||||
this.collectPermissions();
|
this.collectPermissions();
|
||||||
|
Loading…
Reference in New Issue
Block a user