From cd7d47d50eb664daba1720aaa90165e6699a2aee Mon Sep 17 00:00:00 2001 From: "nor..67" Date: Tue, 5 Feb 2013 20:03:08 +0000 Subject: [PATCH] - remove leftover code from BulletAppState git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@10348 75d07b2b-3a1a-0410-a2c5-0572b91ccdca --- engine/src/bullet-common/com/jme3/bullet/BulletAppState.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/engine/src/bullet-common/com/jme3/bullet/BulletAppState.java b/engine/src/bullet-common/com/jme3/bullet/BulletAppState.java index c3b69a32d..e07be45e9 100644 --- a/engine/src/bullet-common/com/jme3/bullet/BulletAppState.java +++ b/engine/src/bullet-common/com/jme3/bullet/BulletAppState.java @@ -157,9 +157,6 @@ public class BulletAppState implements AppState, PhysicsTickListener { //start physics thread(pool) if (threadingType == ThreadingType.PARALLEL) { startPhysicsOnExecutor(); -// } else if (threadingType == ThreadingType.DETACHED) { -// startPhysicsOnExecutor(); -// executor.submit(detachedPhysicsUpdate); } else { pSpace = new PhysicsSpace(worldMin, worldMax, broadphaseType); } @@ -232,9 +229,7 @@ public class BulletAppState implements AppState, PhysicsTickListener { if (!active) { return; } -// if (threadingType != ThreadingType.DETACHED) { pSpace.distributeEvents(); -// } this.tpf = tpf; }