Replaced qualified names with simple names.

This commit is contained in:
MobiusDev
2018-06-19 03:23:43 +00:00
parent a5b69096dd
commit e7606fb5ec
341 changed files with 1119 additions and 1137 deletions

View File

@@ -873,7 +873,7 @@ public class GameStatusThread extends Thread
if (player.getPrivateStoreType() == 1) // sell
{
list = player.getSellList();
for (com.l2jmobius.gameserver.model.TradeList.TradeItem item : list.getItems())
for (TradeList.TradeItem item : list.getItems())
{
content += item.getItem().getItemId() + ":" + item.getEnchant() + ":" + item.getPrice() + ":";
}
@@ -884,7 +884,7 @@ public class GameStatusThread extends Thread
else if (player.getPrivateStoreType() == 3) // buy
{
list = player.getBuyList();
for (com.l2jmobius.gameserver.model.TradeList.TradeItem item : list.getItems())
for (TradeList.TradeItem item : list.getItems())
{
content += item.getItem().getItemId() + ":" + item.getEnchant() + ":" + item.getPrice() + ":";
}