v0.7.5a: removed unnecessary explicit type arguments

This commit is contained in:
Evan Debenham
2019-10-04 15:50:26 -04:00
parent c0d8a456b3
commit 009752822d
35 changed files with 55 additions and 55 deletions

View File

@@ -46,7 +46,7 @@ public class Bundle {
private static final String CLASS_NAME = "__className";
private static HashMap<String,String> aliases = new HashMap<String, String>();
private static HashMap<String,String> aliases = new HashMap<>();
private JSONObject data;
@@ -226,7 +226,7 @@ public class Bundle {
public Collection<Bundlable> getCollection( String key ) {
ArrayList<Bundlable> list = new ArrayList<Bundlable>();
ArrayList<Bundlable> list = new ArrayList<>();
try {
JSONArray array = data.getJSONArray( key );