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

@ -124,7 +124,7 @@ public final class ItemAuctionManager
}
}
public final ItemAuctionInstance getManagerInstance(final int instanceId)
public final ItemAuctionInstance getManagerInstance(int instanceId)
{
return _managerInstances.get(instanceId);
}
@ -134,7 +134,7 @@ public final class ItemAuctionManager
return _auctionIds.getAndIncrement();
}
public static final void deleteAuction(final int auctionId)
public static final void deleteAuction(int auctionId)
{
try (Connection con = DatabaseFactory.getInstance().getConnection())
{

View File

@ -30,7 +30,7 @@ public final class PcCafePointsManager
{
}
public void givePcCafePoint(final L2PcInstance player, final long exp)
public void givePcCafePoint(L2PcInstance player, long exp)
{
if (!Config.PC_BANG_ENABLED)
{

View File

@ -254,7 +254,7 @@ public final class WalkingManager implements IXmlReader
* @param npc NPC to move
* @param routeName name of route to move by
*/
public void startMoving(final L2Npc npc, final String routeName)
public void startMoving(L2Npc npc, String routeName)
{
if (_routes.containsKey(routeName) && (npc != null) && !npc.isDead()) // check, if these route and NPC present
{
@ -355,7 +355,7 @@ public final class WalkingManager implements IXmlReader
* Resumes previously stopped moving
* @param npc NPC to resume
*/
public void resumeMoving(final L2Npc npc)
public void resumeMoving(L2Npc npc)
{
final WalkInfo walk = _activeRoutes.get(npc.getObjectId());
if (walk != null)
@ -414,7 +414,7 @@ public final class WalkingManager implements IXmlReader
* Manage "node arriving"-related tasks: schedule move to next node; send ON_NODE_ARRIVED event to Quest script
* @param npc NPC to manage
*/
public void onArrived(final L2Npc npc)
public void onArrived(L2Npc npc)
{
if (_activeRoutes.containsKey(npc.getObjectId()))
{