diff options
author | Artur Signell <artur@vaadin.com> | 2015-05-16 00:03:22 +0300 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2015-05-16 00:03:39 +0300 |
commit | ce0a3a11d8b68dceb9c833a187b80699ac5fef71 (patch) | |
tree | 5a31633c924e280e0f750a32985541f4344e6d11 /server/src/com/vaadin | |
parent | bdc28f77c6c629eec0a0129a1a791855a6fc435d (diff) | |
download | vaadin-framework-ce0a3a11d8b68dceb9c833a187b80699ac5fef71.tar.gz vaadin-framework-ce0a3a11d8b68dceb9c833a187b80699ac5fef71.zip |
Remove unused out of sync message (#17860)
Change-Id: Ic12cc7928931a66d4738b4976d2ee90d38a49197
Diffstat (limited to 'server/src/com/vaadin')
-rw-r--r-- | server/src/com/vaadin/server/SystemMessages.java | 29 |
1 files changed, 0 insertions, 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 @@ -224,35 +224,6 @@ public class SystemMessages implements Serializable { } /** - * @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.<br/> - * Take note of any unsaved data, and <u>click here</u> 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. * |