983984985986987988989990991992993
(Controller)controllers.elementAt(i); threads[i] = new Thread("Player Deallocate Thread") { @Override public void run() { c.deallocate(); } }; threads[i].start(); }
967968969970971972973974975976977
final Controller c = (Controller)controllers.elementAt(i); threads[i] = new Thread() { public void run() { c.deallocate(); } }; threads[i].start(); }