]> source.dussan.org Git - vaadin-framework.git/commitdiff
Made Application.applicationIsRunning volatile. #7329
authorJohn Alhroos <john.ahlroos@itmill.com>
Thu, 28 Jul 2011 13:00:47 +0000 (13:00 +0000)
committerJohn Alhroos <john.ahlroos@itmill.com>
Thu, 28 Jul 2011 13:00:47 +0000 (13:00 +0000)
svn changeset:20006/svn branch:6.6

src/com/vaadin/Application.java

index 68f64613e9ce72f3c1e3aa11797c4249230fc11e..39a70fe27fb28fdfcd9c49056b968ee4da6e9591 100644 (file)
@@ -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() {