Removed explicit type arguments.

This commit is contained in:
MobiusDev
2018-09-09 15:59:32 +00:00
parent 744204e1cd
commit b50b43a1f9
56 changed files with 133 additions and 389 deletions

View File

@ -65,7 +65,7 @@ public class EnchantItemOptionsData implements IGameXmlReader
final int itemId = parseInteger(d.getAttributes(), "id");
if (!_data.containsKey(itemId))
{
_data.put(itemId, new HashMap<Integer, EnchantOptions>());
_data.put(itemId, new HashMap<>());
}
for (Node cd = d.getFirstChild(); cd != null; cd = cd.getNextSibling())
{