From: Artur Signell Date: Fri, 15 May 2015 21:03:22 +0000 (+0300) Subject: Remove unused out of sync message (#17860) X-Git-Tag: 7.5.0.beta1~10 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=ce0a3a11d8b68dceb9c833a187b80699ac5fef71;p=vaadin-framework.git Remove unused out of sync message (#17860) Change-Id: Ic12cc7928931a66d4738b4976d2ee90d38a49197 --- 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.