cleanup: remove unnecessary interface modifiers

This commit is contained in:
P0nk
2021-04-08 07:33:52 +02:00
parent dde52653e5
commit f37d4063fb
20 changed files with 79 additions and 75 deletions

View File

@@ -3665,12 +3665,12 @@ public class MapleMap {
return retP + retI;
}
private static interface DelayedPacketCreation {
private interface DelayedPacketCreation {
void sendPackets(MapleClient c);
}
private static interface SpawnCondition {
private interface SpawnCondition {
boolean canSpawn(MapleCharacter chr);
}