diff options
author | John Alhroos <john.ahlroos@itmill.com> | 2011-07-28 13:00:47 +0000 |
---|---|---|
committer | John Alhroos <john.ahlroos@itmill.com> | 2011-07-28 13:00:47 +0000 |
commit | 3be6a0c18d6dd51300b6bdb75cfe8e7f2b91faab (patch) | |
tree | 787b4b5a8b97ad19b18236e600eded0ee578417b /src/com | |
parent | 78c1c9b04f3766bf5f99f8ce6784e5ad1a82b44c (diff) | |
download | vaadin-framework-3be6a0c18d6dd51300b6bdb75cfe8e7f2b91faab.tar.gz vaadin-framework-3be6a0c18d6dd51300b6bdb75cfe8e7f2b91faab.zip |
Made Application.applicationIsRunning volatile. #7329
svn changeset:20006/svn branch:6.6
Diffstat (limited to 'src/com')
-rw-r--r-- | src/com/vaadin/Application.java | 8 |
1 files 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 <u>click here</u> to continue." */ public String getSessionExpiredMessage() { @@ -1416,7 +1416,7 @@ public abstract class Application implements URIHandler, } /** - * @return + * @return * "Take note of any unsaved data, and <u>click here</u> to continue." */ public String getCommunicationErrorMessage() { @@ -1448,7 +1448,7 @@ public abstract class Application implements URIHandler, } /** - * @return + * @return * "Take note of any unsaved data, and <u>click here</u> to continue." */ public String getAuthenticationErrorMessage() { |