Unused method removed

This commit is contained in:
2024-04-20 08:57:42 -04:00
parent e1e72b71bd
commit f09a7d4d12
@@ -46,13 +46,6 @@ public class ApplyEffectPowerAction extends AbstractPowerAction {
this.effect = effects.get(this.effectID);
}
public ApplyEffectPowerAction(ResultSet rs, EffectsBase effect) throws SQLException {
super(rs);
this.effectID = rs.getString("effectID");
this.effect = effect;
}
private static boolean blockInvul(PowersBase pb, AbstractCharacter source, AbstractWorldObject awo) {
if (awo == null || pb == null || source == null)
return false;
@@ -65,7 +58,6 @@ public class ApplyEffectPowerAction extends AbstractPowerAction {
AbstractCharacter ac = (AbstractCharacter) awo;
return false;
}