diff options
Diffstat (limited to 'uitest/src/main/java/com/vaadin/tests/components/AbstractTestUI.java')
-rw-r--r-- | uitest/src/main/java/com/vaadin/tests/components/AbstractTestUI.java | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/uitest/src/main/java/com/vaadin/tests/components/AbstractTestUI.java b/uitest/src/main/java/com/vaadin/tests/components/AbstractTestUI.java index aa0a92c364..7b10c1a7f3 100644 --- a/uitest/src/main/java/com/vaadin/tests/components/AbstractTestUI.java +++ b/uitest/src/main/java/com/vaadin/tests/components/AbstractTestUI.java @@ -99,11 +99,10 @@ public abstract class AbstractTestUI extends UI { long currentWidgetsetTimestamp = currentWidgetsetFolder.lastModified(); int halfHour = 30 * 60 * 1000; if (currentWidgetsetTimestamp + halfHour < newestWidgetsetTimestamp) { - Notification.show( - "The currently used widgetset (" + usedWidgetset - + ") was compiled long before the most recently compiled one (" - + newestWidgetsetName - + "). Are you sure you have compiled the right widgetset?", + Notification.show("The currently used widgetset (" + usedWidgetset + + ") was compiled long before the most recently compiled one (" + + newestWidgetsetName + + "). Are you sure you have compiled the right widgetset?", Type.WARNING_MESSAGE); } } |