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
@@ -30,7 +30,7 @@ import java.util.ArrayList;
public class Camera extends Gizmo {
private static ArrayList<Camera> all = new ArrayList<Camera>();
private static ArrayList<Camera> all = new ArrayList<>();
protected static float invW2;
protected static float invH2;
@@ -38,7 +38,7 @@ public class Group extends Gizmo {
public static boolean freezeEmitters = false;
public Group() {
members = new ArrayList<Gizmo>();
members = new ArrayList<>();
length = 0;
}
@@ -36,7 +36,7 @@ public class TextureFilm {
private SmartTexture texture;
protected HashMap<Object,RectF> frames = new HashMap<Object, RectF>();
protected HashMap<Object,RectF> frames = new HashMap<>();
public TextureFilm( Object tx ) {