mirror of
https://github.com/PaperMC/Paper.git
synced 2025-05-18 21:20:24 -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
|
||||
public boolean isEmpty() {
|
||||
return this.size() != 0;
|
||||
return this.size() == 0;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Loading…
x
Reference in New Issue
Block a user