Removed boxing for String conversions.
This commit is contained in:
@ -683,7 +683,7 @@ public class L2Npc extends L2Character
|
||||
|
||||
if (val == 0)
|
||||
{
|
||||
pom = "" + npcId;
|
||||
pom = Integer.toString(npcId);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -154,7 +154,7 @@ public class FriendlyNpcInstance extends L2Attackable
|
||||
String pom = "";
|
||||
if (val == 0)
|
||||
{
|
||||
pom = "" + npcId;
|
||||
pom = Integer.toString(npcId);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -42,7 +42,7 @@ public final class L2FishermanInstance extends L2MerchantInstance
|
||||
|
||||
if (val == 0)
|
||||
{
|
||||
pom = "" + npcId;
|
||||
pom = Integer.toString(npcId);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -106,7 +106,7 @@ public class L2GuardInstance extends L2Attackable
|
||||
String pom = "";
|
||||
if (val == 0)
|
||||
{
|
||||
pom = "" + npcId;
|
||||
pom = Integer.toString(npcId);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -55,7 +55,7 @@ public class L2MerchantInstance extends L2NpcInstance
|
||||
String pom;
|
||||
if (val == 0)
|
||||
{
|
||||
pom = "" + npcId;
|
||||
pom = Integer.toString(npcId);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -36,7 +36,7 @@ public class L2PetManagerInstance extends L2MerchantInstance
|
||||
|
||||
if (val == 0)
|
||||
{
|
||||
pom = "" + npcId;
|
||||
pom = Integer.toString(npcId);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -229,7 +229,7 @@ public class L2SchemeBufferInstance extends L2Npc
|
||||
String filename = "";
|
||||
if (val == 0)
|
||||
{
|
||||
filename = "" + npcId;
|
||||
filename = Integer.toString(npcId);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -93,7 +93,7 @@ public class L2VillageMasterInstance extends L2NpcInstance
|
||||
|
||||
if (val == 0)
|
||||
{
|
||||
pom = "" + npcId;
|
||||
pom = Integer.toString(npcId);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -52,7 +52,7 @@ public class L2WarehouseInstance extends L2NpcInstance
|
||||
|
||||
if (val == 0)
|
||||
{
|
||||
pom = "" + npcId;
|
||||
pom = Integer.toString(npcId);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Reference in New Issue
Block a user