From 1f362c1803107ee8033ac4fad2a83ef8f5bb505e Mon Sep 17 00:00:00 2001 From: hns Date: Wed, 13 Jun 2007 12:45:24 +0000 Subject: [PATCH] * Don't synchronize isRunning() as that can cause deadlocks during shotdown. --- src/helma/framework/core/Application.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helma/framework/core/Application.java b/src/helma/framework/core/Application.java index 0e0af1e4..27f31e77 100644 --- a/src/helma/framework/core/Application.java +++ b/src/helma/framework/core/Application.java @@ -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; }