diff options
author | Leif Åstrand <leif@vaadin.com> | 2013-06-05 15:15:53 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2013-06-05 12:18:23 +0000 |
commit | a9ff7993c2f0e3f3412ef68a236aa2eb02385c64 (patch) | |
tree | 9741381f4f2b8f260796c1bfcaa57d2c22cdcf33 /client | |
parent | b0574f7b33c4d3d437c8c11cd53389e5522f6999 (diff) | |
download | vaadin-framework-a9ff7993c2f0e3f3412ef68a236aa2eb02385c64.tar.gz vaadin-framework-a9ff7993c2f0e3f3412ef68a236aa2eb02385c64.zip |
Don't use the broken {@value Type#CONSTANT} pattern in javadocs
Change-Id: I78f0f6532242bd5d7aa406fe61ccf15d9585fde9
Diffstat (limited to 'client')
-rw-r--r-- | client/src/com/vaadin/client/ApplicationConfiguration.java | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/client/src/com/vaadin/client/ApplicationConfiguration.java b/client/src/com/vaadin/client/ApplicationConfiguration.java index 9152e5ab23..a1f2e4f30e 100644 --- a/client/src/com/vaadin/client/ApplicationConfiguration.java +++ b/client/src/com/vaadin/client/ApplicationConfiguration.java @@ -232,9 +232,8 @@ public class ApplicationConfiguration implements EntryPoint { /** * Checks whether path info in requests to the server-side service should be - * in a request parameter (named - * {@value ApplicationConstants#V_RESOURCE_PATH}) or appended to the end of - * the service URL. + * in a request parameter (named <code>v-resourcePath</code>) or appended to + * the end of the service URL. * * @see #getServiceUrl() * @@ -253,9 +252,8 @@ public class ApplicationConfiguration implements EntryPoint { /** * Gets the URL to the server-side VaadinService. If * {@link #useServiceUrlPathParam()} return <code>true</code>, the requested - * path info should be in the {@value ApplicationConstants#V_RESOURCE_PATH} - * query parameter; else the path info should be appended to the end of the - * URL. + * path info should be in the <code>v-resourcePath</code> query parameter; + * else the path info should be appended to the end of the URL. * * @see #useServiceUrlPathParam() * |