From 5e12f1aa3a74078c128d13f0fe7161c3577479c6 Mon Sep 17 00:00:00 2001 From: Magnus Ulf Date: Sat, 13 Mar 2021 09:12:13 +0100 Subject: [PATCH] Remove deprecated methods --- .../massivecraft/factions/entity/Faction.java | 26 ------------------- 1 file changed, 26 deletions(-) diff --git a/src/com/massivecraft/factions/entity/Faction.java b/src/com/massivecraft/factions/entity/Faction.java index 06246552..9e9f8d94 100644 --- a/src/com/massivecraft/factions/entity/Faction.java +++ b/src/com/massivecraft/factions/entity/Faction.java @@ -454,32 +454,6 @@ public class Faction extends Entity implements FactionsParticipator, MP this.money = this.convertSet(money, this.money, 0D); } - // -------------------------------------------- // - // FIELD: open - // -------------------------------------------- // - - // Nowadays this is a flag! - - @Deprecated - public boolean isDefaultOpen() - { - return MFlag.getFlagOpen().isStandard(); - } - - @Deprecated - public boolean isOpen() - { - return this.getFlag(MFlag.getFlagOpen()); - } - - @Deprecated - public void setOpen(Boolean open) - { - MFlag flag = MFlag.getFlagOpen(); - if (open == null) open = flag.isStandard(); - this.setFlag(flag, open); - } - // -------------------------------------------- // // FIELD: invitations // -------------------------------------------- //