Added missing final modifiers.

This commit is contained in:
MobiusDev
2015-12-26 12:03:36 +00:00
parent cc92e5d062
commit e0d681a17e
974 changed files with 5919 additions and 5917 deletions

View File

@@ -72,7 +72,7 @@ public class Options
final List<AbstractFunction> funcs = new ArrayList<>(_funcs.size());
for (FuncTemplate fuctionTemplate : _funcs)
{
AbstractFunction fuction = fuctionTemplate.getFunc(player, player, item, this);
final AbstractFunction fuction = fuctionTemplate.getFunc(player, player, item, this);
if (fuction != null)
{
funcs.add(fuction);
@@ -141,7 +141,7 @@ public class Options
public List<OptionsSkillHolder> getActivationsSkills(OptionsSkillType type)
{
List<OptionsSkillHolder> temp = new ArrayList<>();
final List<OptionsSkillHolder> temp = new ArrayList<>();
for (OptionsSkillHolder holder : _activationSkills)
{
if (holder.getSkillType() == type)