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