Skip to content

Commit

Permalink
remove 3 unnecessary PhysicsSpace constructors
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Aug 24, 2018
1 parent 3d8517c commit 942c5c9
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions Minie/src/main/java/com/jme3/bullet/PhysicsSpace.java
Original file line number Diff line number Diff line change
Expand Up @@ -143,18 +143,6 @@ public static void setLocalThreadPhysicsSpace(PhysicsSpace space) {
physicsSpaceTL.set(space);
}

public PhysicsSpace() { // TODO remove
this(new Vector3f(-10000f, -10000f, -10000f), new Vector3f(10000f, 10000f, 10000f), BroadphaseType.DBVT);
}

public PhysicsSpace(BroadphaseType broadphaseType) { // TODO remove
this(new Vector3f(-10000f, -10000f, -10000f), new Vector3f(10000f, 10000f, 10000f), broadphaseType);
}

public PhysicsSpace(Vector3f worldMin, Vector3f worldMax) { // TODO remove
this(worldMin, worldMax, BroadphaseType.AXIS_SWEEP_3);
}

/**
* Create a new PhysicsSpace. Must be called from the designated physics
* thread.
Expand Down

0 comments on commit 942c5c9

Please sign in to comment.