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

@@ -160,7 +160,7 @@ public class ZoneData
LOGGER.info(getClass().getSimpleName() + ": Loaded " + _classZones.size() + " zones classes and total " + size + " zones.");
}
private void loadFileZone(final File f, WorldRegion[][] worldRegions) throws Exception
private void loadFileZone(File f, WorldRegion[][] worldRegions) throws Exception
{
Document doc = null;
final DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();

View File

@@ -27,13 +27,13 @@ import org.l2jmobius.gameserver.model.zone.ZoneType;
*/
public class HqZone extends ZoneType
{
public HqZone(final int id)
public HqZone(int id)
{
super(id);
}
@Override
protected void onEnter(final Creature character)
protected void onEnter(Creature character)
{
if (character instanceof PlayerInstance)
{
@@ -42,7 +42,7 @@ public class HqZone extends ZoneType
}
@Override
protected void onExit(final Creature character)
protected void onExit(Creature character)
{
if (character instanceof PlayerInstance)
{
@@ -51,12 +51,12 @@ public class HqZone extends ZoneType
}
@Override
public void onDieInside(final Creature character)
public void onDieInside(Creature character)
{
}
@Override
public void onReviveInside(final Creature character)
public void onReviveInside(Creature character)
{
}
}

View File

@@ -27,7 +27,7 @@ import org.l2jmobius.gameserver.model.zone.ZoneType;
*/
public class NoRestartZone extends ZoneType
{
public NoRestartZone(final int id)
public NoRestartZone(int id)
{
super(id);
}