Some code formatting.

This commit is contained in:
MobiusDev
2016-03-19 08:47:52 +00:00
parent 9a9a5dd414
commit 345b88ad95
106 changed files with 308 additions and 308 deletions

View File

@@ -26,7 +26,7 @@ import com.l2jmobius.gameserver.model.zone.ZoneId;
*/
public class L2HqZone extends L2ZoneType
{
public L2HqZone(final int id)
public L2HqZone(int id)
{
super(id);
}
@@ -57,7 +57,7 @@ public class L2HqZone extends L2ZoneType
}
@Override
protected void onEnter(final L2Character character)
protected void onEnter(L2Character character)
{
if (character.isPlayer())
{
@@ -66,7 +66,7 @@ public class L2HqZone extends L2ZoneType
}
@Override
protected void onExit(final L2Character character)
protected void onExit(L2Character character)
{
if (character.isPlayer())
{

View File

@@ -26,13 +26,13 @@ import com.l2jmobius.gameserver.model.zone.ZoneId;
*/
public class L2NoStoreZone extends L2ZoneType
{
public L2NoStoreZone(final int id)
public L2NoStoreZone(int id)
{
super(id);
}
@Override
protected void onEnter(final L2Character character)
protected void onEnter(L2Character character)
{
if (character.isPlayer())
{
@@ -41,7 +41,7 @@ public class L2NoStoreZone extends L2ZoneType
}
@Override
protected void onExit(final L2Character character)
protected void onExit(L2Character character)
{
if (character.isPlayer())
{