fix(bukkit-brig-forwarding-map): Invert isEmpty method (#12555)

This commit is contained in:
Hjalmar Gunnarsson
2025-05-18 09:12:59 +02:00
committed by GitHub
parent 841d634230
commit c000b352ad

View File

@@ -47,7 +47,7 @@ public class BukkitBrigForwardingMap extends HashMap<String, Command> {
@Override
public boolean isEmpty() {
return this.size() != 0;
return this.size() == 0;
}
@Override