mirror of
https://github.com/PaperMC/Paper.git
synced 2025-05-19 05:30:23 -07:00
fix(bukkit-brig-forwarding-map): Invert isEmpty method (#12555)
This commit is contained in:
parent
841d634230
commit
c000b352ad
@ -47,7 +47,7 @@ public class BukkitBrigForwardingMap extends HashMap<String, Command> {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean isEmpty() {
|
public boolean isEmpty() {
|
||||||
return this.size() != 0;
|
return this.size() == 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
Loading…
x
Reference in New Issue
Block a user