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

@ -1656,7 +1656,7 @@ public final class RequestActionUse extends L2GameClientPacket
* Perform a couple social action.
* @param id the couple social action Id
*/
private void useCoupleSocial(final int id)
private void useCoupleSocial(int id)
{
final L2PcInstance requester = getActiveChar();
if (requester == null)

View File

@ -281,7 +281,7 @@ public class RequestExEnchantItemAttribute extends L2GameClientPacket
player.sendPacket(iu);
}
private int addElement(final L2PcInstance player, final L2ItemInstance stone, final L2ItemInstance item, byte elementToAdd)
private int addElement(L2PcInstance player, L2ItemInstance stone, L2ItemInstance item, byte elementToAdd)
{
final Elementals oldElement = item.getElemental(elementToAdd);
final int elementValue = oldElement == null ? 0 : oldElement.getValue();

View File

@ -108,7 +108,7 @@ public final class RequestRestartPoint extends L2GameClientPacket
portPlayer(activeChar);
}
protected final void portPlayer(final L2PcInstance activeChar)
protected final void portPlayer(L2PcInstance activeChar)
{
Location loc = null;
Castle castle = null;

View File

@ -55,7 +55,7 @@ public class RequestItemEnsoul extends L2GameClientPacket
final int SCObjectId = readD(); // Soul Crystal objectId
final int effectId = readD(); // EffectId
SoulCrystalOption sco = SoulCrystalOptionsData.getInstance().getByEffectId(effectId);
final SoulCrystalOption sco = SoulCrystalOptionsData.getInstance().getByEffectId(effectId);
sco.setSoulCrystalObjectId(SCObjectId);
sco.setSpecial(special);
sco.setSlot(slot);