Removed final modifier from a few method parameters.

This commit is contained in:
MobiusDevelopment
2020-07-24 04:30:42 +00:00
parent 4cbed14d21
commit 4029f3e91f
26 changed files with 41 additions and 41 deletions

View File

@@ -700,7 +700,7 @@ public class AttackableAI extends CreatureAI
// Call friendly npcs for help only if this NPC was attacked by the target creature.
boolean targetExistsInAttackByList = false;
for (final WeakReference<Creature> reference : npc.getAttackByList())
for (WeakReference<Creature> reference : npc.getAttackByList())
{
if (reference.get() == finalTarget)
{