From ce0a3a11d8b68dceb9c833a187b80699ac5fef71 Mon Sep 17 00:00:00 2001 From: Artur Signell Date: Sat, 16 May 2015 00:03:22 +0300 Subject: [PATCH] Remove unused out of sync message (#17860) Change-Id: Ic12cc7928931a66d4738b4976d2ee90d38a49197 --- .../src/com/vaadin/server/SystemMessages.java | 29 ------------------- 1 file changed, 29 deletions(-) diff --git a/server/src/com/vaadin/server/SystemMessages.java b/server/src/com/vaadin/server/SystemMessages.java index 51e9da5800..51cc7d497d 100644 --- a/server/src/com/vaadin/server/SystemMessages.java +++ b/server/src/com/vaadin/server/SystemMessages.java @@ -223,35 +223,6 @@ public class SystemMessages implements Serializable { return (internalErrorNotificationEnabled ? internalErrorMessage : null); } - /** - * @return null to reload the application after out of sync message. - */ - public String getOutOfSyncURL() { - return outOfSyncURL; - } - - /** - * @return true to enable showing out of sync message - */ - public boolean isOutOfSyncNotificationEnabled() { - return outOfSyncNotificationEnabled; - } - - /** - * @return "Out of sync" - */ - public String getOutOfSyncCaption() { - return (outOfSyncNotificationEnabled ? outOfSyncCaption : null); - } - - /** - * @return "Something has caused us to be out of sync with the server.
- * Take note of any unsaved data, and click here to re-sync." - */ - public String getOutOfSyncMessage() { - return (outOfSyncNotificationEnabled ? outOfSyncMessage : null); - } - /** * Returns the URL the user should be redirected to after dismissing the * "you have to enable your cookies" message. Typically null. -- 2.39.5