瀏覽代碼

Trove for ms.

JIV 15 年之前
父節點
當前提交
81a45046bc
共有 1 個文件被更改,包括 3 次插入3 次删除
  1. 3 3
      L2_GameServer/java/com/l2jserver/gameserver/model/L2Multisell.java

+ 3 - 3
L2_GameServer/java/com/l2jserver/gameserver/model/L2Multisell.java

@@ -14,16 +14,16 @@
  */
 package com.l2jserver.gameserver.model;
 
+import gnu.trove.TIntObjectHashMap;
+
 import java.io.File;
 import java.util.List;
-import java.util.Map;
 import java.util.logging.Level;
 import java.util.logging.Logger;
 
 import javax.xml.parsers.DocumentBuilderFactory;
 
 import javolution.util.FastList;
-import javolution.util.FastMap;
 
 import org.w3c.dom.Document;
 import org.w3c.dom.Node;
@@ -43,7 +43,7 @@ import com.l2jserver.gameserver.templates.item.L2Weapon;
 public class L2Multisell
 {
 	private static final Logger _log = Logger.getLogger(L2Multisell.class.getName());
-	private final Map<Integer, MultiSellListContainer> _entries = new FastMap<Integer, MultiSellListContainer>();
+	private final TIntObjectHashMap<MultiSellListContainer> _entries = new TIntObjectHashMap<MultiSellListContainer>();
 	
 	/**
 	 * Instantiates a new l2 multisell.