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

@ -76,7 +76,7 @@ public abstract class ClanHallSiegeEngine extends Quest implements Siegable
public ScheduledFuture<?> _siegeTask;
public boolean _missionAccomplished = false;
public ClanHallSiegeEngine(String name, String descr, final int hallId)
public ClanHallSiegeEngine(String name, String descr, int hallId)
{
super(-1, name, descr);
_log = Logger.getLogger(getClass().getName());
@ -448,7 +448,7 @@ public abstract class ClanHallSiegeEngine extends Quest implements Siegable
return Config.CHS_FAME_FREQUENCY;
}
public final void broadcastNpcSay(final L2Npc npc, final ChatType type, final NpcStringId messageId)
public final void broadcastNpcSay(L2Npc npc, ChatType type, NpcStringId messageId)
{
final NpcSay npcSay = new NpcSay(npc.getObjectId(), type, npc.getId(), messageId);
final int sourceRegion = MapRegionManager.getInstance().getMapRegionLocId(npc);

View File

@ -144,7 +144,7 @@ public final class SiegableHall extends ClanHall
}
}
public final void setSiege(final ClanHallSiegeEngine siegable)
public final void setSiege(ClanHallSiegeEngine siegable)
{
_siege = siegable;
_siegeZone.setSiegeInstance(siegable);
@ -175,7 +175,7 @@ public final class SiegableHall extends ClanHall
_nextSiege.setTimeInMillis(date);
}
public final void setNextSiegeDate(final Calendar c)
public final void setNextSiegeDate(Calendar c)
{
_nextSiege = c;
}
@ -193,7 +193,7 @@ public final class SiegableHall extends ClanHall
updateDb();
}
public final void addAttacker(final L2Clan clan)
public final void addAttacker(L2Clan clan)
{
if (getSiege() != null)
{
@ -201,7 +201,7 @@ public final class SiegableHall extends ClanHall
}
}
public final void removeAttacker(final L2Clan clan)
public final void removeAttacker(L2Clan clan)
{
if (getSiege() != null)
{