diff options
author | Leif Åstrand <leif@vaadin.com> | 2012-11-21 14:22:44 +0200 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2012-11-21 14:22:58 +0200 |
commit | 6ed87c1b6ce280082c2dee21a6f87c1620e0ea79 (patch) | |
tree | 907c13b4491867904034218c00b335781ddd6783 /shared | |
parent | 416b8a6d6b9eb580454f006b38a72ffe7f484638 (diff) | |
download | vaadin-framework-6ed87c1b6ce280082c2dee21a6f87c1620e0ea79.tar.gz vaadin-framework-6ed87c1b6ce280082c2dee21a6f87c1620e0ea79.zip |
Remove slashes from beginning or end of constants (#10140)
* Also rename the constants to cause compile errors in 3rd party code
Change-Id: If96c9956de7737345ec9372be28292b3490387a2
Diffstat (limited to 'shared')
-rw-r--r-- | shared/src/com/vaadin/shared/ApplicationConstants.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/shared/src/com/vaadin/shared/ApplicationConstants.java b/shared/src/com/vaadin/shared/ApplicationConstants.java index a21a0d0b35..7b24ef732c 100644 --- a/shared/src/com/vaadin/shared/ApplicationConstants.java +++ b/shared/src/com/vaadin/shared/ApplicationConstants.java @@ -20,13 +20,13 @@ public class ApplicationConstants { // This indicates the whole page is generated by us (not embedded) public static final String GENERATED_BODY_CLASSNAME = "v-generated-body"; - public static final String APP_REQUEST_PATH = "APP"; + public static final String APP_PATH = "APP"; - public static final String UIDL_REQUEST_PATH = "UIDL/"; + public static final String UIDL_PATH = "UIDL"; - public static final String HEARTBEAT_REQUEST_PATH = "HEARTBEAT/"; + public static final String HEARTBEAT_PATH = "HEARTBEAT"; - public static final String PUBLISHED_FILE_PATH = APP_REQUEST_PATH + '/' + public static final String PUBLISHED_FILE_PATH = APP_PATH + '/' + "PUBLISHED"; public static final String APP_PROTOCOL_PREFIX = "app://"; |