diff options
author | Artur Signell <artur@vaadin.com> | 2014-05-22 16:06:51 +0300 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2014-05-22 15:43:51 +0000 |
commit | dda3797ee1c89aa2d62a2b99e2fde8967aa95b81 (patch) | |
tree | 0feabe69e195a22ced6bf5a9f8d73bf35bad4c3c /server/src/com | |
parent | 660d17bff945a7b9b65735b23b4057769d07388b (diff) | |
download | vaadin-framework-dda3797ee1c89aa2d62a2b99e2fde8967aa95b81.tar.gz vaadin-framework-dda3797ee1c89aa2d62a2b99e2fde8967aa95b81.zip |
Javadoc correction
Change-Id: I58c89f6c8b2c72e233b1d9e5413da1d6cbc36285
Diffstat (limited to 'server/src/com')
-rw-r--r-- | server/src/com/vaadin/server/VaadinService.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/server/src/com/vaadin/server/VaadinService.java b/server/src/com/vaadin/server/VaadinService.java index 6aeac684c2..08bc6f5c79 100644 --- a/server/src/com/vaadin/server/VaadinService.java +++ b/server/src/com/vaadin/server/VaadinService.java @@ -941,12 +941,12 @@ public abstract class VaadinService implements Serializable { } /** - * Gets the currently processed Vaadin request. The current request is - * automatically defined when the request is started. The current request + * Gets the currently processed Vaadin response. The current response is + * automatically defined when the request is started. The current response * can not be used in e.g. background threads because of the way server - * implementations reuse request instances. + * implementations reuse response instances. * - * @return the current Vaadin request instance if available, otherwise + * @return the current Vaadin response instance if available, otherwise * <code>null</code> * * @see #setCurrentInstances(VaadinRequest, VaadinResponse) |