Removed boxing for String conversions.

This commit is contained in:
MobiusDev
2018-09-08 23:55:08 +00:00
parent bb7e3b8e1b
commit b6e4ce2ebf
116 changed files with 252 additions and 252 deletions

View File

@ -683,7 +683,7 @@ public class L2Npc extends L2Character
if (val == 0)
{
pom = "" + npcId;
pom = Integer.toString(npcId);
}
else
{

View File

@ -154,7 +154,7 @@ public class FriendlyNpcInstance extends L2Attackable
String pom = "";
if (val == 0)
{
pom = "" + npcId;
pom = Integer.toString(npcId);
}
else
{

View File

@ -42,7 +42,7 @@ public final class L2FishermanInstance extends L2MerchantInstance
if (val == 0)
{
pom = "" + npcId;
pom = Integer.toString(npcId);
}
else
{

View File

@ -106,7 +106,7 @@ public class L2GuardInstance extends L2Attackable
String pom = "";
if (val == 0)
{
pom = "" + npcId;
pom = Integer.toString(npcId);
}
else
{

View File

@ -55,7 +55,7 @@ public class L2MerchantInstance extends L2NpcInstance
String pom;
if (val == 0)
{
pom = "" + npcId;
pom = Integer.toString(npcId);
}
else
{

View File

@ -36,7 +36,7 @@ public class L2PetManagerInstance extends L2MerchantInstance
if (val == 0)
{
pom = "" + npcId;
pom = Integer.toString(npcId);
}
else
{

View File

@ -229,7 +229,7 @@ public class L2SchemeBufferInstance extends L2Npc
String filename = "";
if (val == 0)
{
filename = "" + npcId;
filename = Integer.toString(npcId);
}
else
{

View File

@ -93,7 +93,7 @@ public class L2VillageMasterInstance extends L2NpcInstance
if (val == 0)
{
pom = "" + npcId;
pom = Integer.toString(npcId);
}
else
{

View File

@ -52,7 +52,7 @@ public class L2WarehouseInstance extends L2NpcInstance
if (val == 0)
{
pom = "" + npcId;
pom = Integer.toString(npcId);
}
else
{