fix(bukkit-brig-forwarding-map): Invert isEmpty method (#12555)
This commit is contained in:
committed by
GitHub
parent
841d634230
commit
c000b352ad
@ -47,7 +47,7 @@ public class BukkitBrigForwardingMap extends HashMap<String, Command> {
|
||||
|
||||
@Override
|
||||
public boolean isEmpty() {
|
||||
return this.size() != 0;
|
||||
return this.size() == 0;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user