* Don't synchronize isRunning() as that can cause deadlocks during shotdown.

This commit is contained in:
hns 2007-06-13 12:45:24 +00:00
parent bf95a9c036
commit 1f362c1803

View file

@ -522,7 +522,7 @@ public final class Application implements Runnable {
*
* @return true if the app is running
*/
public synchronized boolean isRunning() {
public boolean isRunning() {
return running;
}