From 3be6a0c18d6dd51300b6bdb75cfe8e7f2b91faab Mon Sep 17 00:00:00 2001 From: John Alhroos Date: Thu, 28 Jul 2011 13:00:47 +0000 Subject: [PATCH] Made Application.applicationIsRunning volatile. #7329 svn changeset:20006/svn branch:6.6 --- src/com/vaadin/Application.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/com/vaadin/Application.java b/src/com/vaadin/Application.java index 68f64613e9..39a70fe27f 100644 --- a/src/com/vaadin/Application.java +++ b/src/com/vaadin/Application.java @@ -134,7 +134,7 @@ public abstract class Application implements URIHandler, /** * Application status. */ - private boolean applicationIsRunning = false; + private volatile boolean applicationIsRunning = false; /** * Application properties. @@ -1384,7 +1384,7 @@ public abstract class Application implements URIHandler, } /** - * @return + * @return * "Take note of any unsaved data, and click here to continue." */ public String getSessionExpiredMessage() { @@ -1416,7 +1416,7 @@ public abstract class Application implements URIHandler, } /** - * @return + * @return * "Take note of any unsaved data, and click here to continue." */ public String getCommunicationErrorMessage() { @@ -1448,7 +1448,7 @@ public abstract class Application implements URIHandler, } /** - * @return + * @return * "Take note of any unsaved data, and click here to continue." */ public String getAuthenticationErrorMessage() { -- 2.39.5