Code format for previous commit.
This commit is contained in:
@@ -2136,11 +2136,11 @@ public final class ItemInstance extends WorldObject
|
||||
public Collection<EnsoulOption> getSpecialAbilities()
|
||||
{
|
||||
final List<EnsoulOption> result = new ArrayList<>();
|
||||
for (EnsoulOption _ensoulOption : _ensoulOptions)
|
||||
for (EnsoulOption ensoulOption : _ensoulOptions)
|
||||
{
|
||||
if (_ensoulOption != null)
|
||||
if (ensoulOption != null)
|
||||
{
|
||||
result.add(_ensoulOption);
|
||||
result.add(ensoulOption);
|
||||
}
|
||||
}
|
||||
return result;
|
||||
@@ -2154,11 +2154,11 @@ public final class ItemInstance extends WorldObject
|
||||
public Collection<EnsoulOption> getAdditionalSpecialAbilities()
|
||||
{
|
||||
final List<EnsoulOption> result = new ArrayList<>();
|
||||
for (EnsoulOption _ensoulSpecialOption : _ensoulSpecialOptions)
|
||||
for (EnsoulOption ensoulSpecialOption : _ensoulSpecialOptions)
|
||||
{
|
||||
if (_ensoulSpecialOption != null)
|
||||
if (ensoulSpecialOption != null)
|
||||
{
|
||||
result.add(_ensoulSpecialOption);
|
||||
result.add(ensoulSpecialOption);
|
||||
}
|
||||
}
|
||||
return result;
|
||||
@@ -2203,13 +2203,13 @@ public final class ItemInstance extends WorldObject
|
||||
|
||||
public void clearSpecialAbilities()
|
||||
{
|
||||
for (EnsoulOption _ensoulOption : _ensoulOptions)
|
||||
for (EnsoulOption ensoulOption : _ensoulOptions)
|
||||
{
|
||||
clearSpecialAbility(_ensoulOption);
|
||||
clearSpecialAbility(ensoulOption);
|
||||
}
|
||||
for (EnsoulOption _ensoulSpecialOption : _ensoulSpecialOptions)
|
||||
for (EnsoulOption ensoulSpecialOption : _ensoulSpecialOptions)
|
||||
{
|
||||
clearSpecialAbility(_ensoulSpecialOption);
|
||||
clearSpecialAbility(ensoulSpecialOption);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2220,13 +2220,13 @@ public final class ItemInstance extends WorldObject
|
||||
return;
|
||||
}
|
||||
|
||||
for (EnsoulOption _ensoulOption : _ensoulOptions)
|
||||
for (EnsoulOption ensoulOption : _ensoulOptions)
|
||||
{
|
||||
applySpecialAbility(_ensoulOption);
|
||||
applySpecialAbility(ensoulOption);
|
||||
}
|
||||
for (EnsoulOption _ensoulSpecialOption : _ensoulSpecialOptions)
|
||||
for (EnsoulOption ensoulSpecialOption : _ensoulSpecialOptions)
|
||||
{
|
||||
applySpecialAbility(_ensoulSpecialOption);
|
||||
applySpecialAbility(ensoulSpecialOption);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user