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

@@ -24,7 +24,7 @@ public final class RelationCache
private final int _relation;
private final boolean _isAutoAttackable;
public RelationCache(final int relation, final boolean isAutoAttackable)
public RelationCache(int relation, boolean isAutoAttackable)
{
_relation = relation;
_isAutoAttackable = isAutoAttackable;