diff options
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() { |