v0.7.5a: removed unnecessary explicit type arguments
This commit is contained in:
@@ -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 );
|
||||
|
||||
Reference in New Issue
Block a user