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

@ -100,7 +100,7 @@ public class DBDumper
{
if (!keys.containsKey(dset.getString(4)))
{
keys.put(dset.getString(4), new ArrayList<String>());
keys.put(dset.getString(4), new ArrayList<>());
}
keys.get(dset.getString(4)).add(dset.getString(1));
}