diff options
author | Leif Åstrand <leif@vaadin.com> | 2014-12-15 13:40:07 +0200 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2014-12-15 13:40:07 +0200 |
commit | 4b58dccc09a6e0aa35dd3944ae5208644b6d4595 (patch) | |
tree | 852f344293607da987015e65ba04a82ef4534128 /server | |
parent | 8c8ce29d6a6b3b1698cf28dd0e3a711d94f3bf25 (diff) | |
download | vaadin-framework-4b58dccc09a6e0aa35dd3944ae5208644b6d4595.tar.gz vaadin-framework-4b58dccc09a6e0aa35dd3944ae5208644b6d4595.zip |
Remove accidentally retained JavaDoc row
The offending row was not removed when the proceeding "@throws
JSONException" row was removed.
Change-Id: I38d914284d92554540744e8c52eefa0db78bc55d
Diffstat (limited to 'server')
-rw-r--r-- | server/src/com/vaadin/server/ClientConnector.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/src/com/vaadin/server/ClientConnector.java b/server/src/com/vaadin/server/ClientConnector.java index 50ce2754cb..b784aa5d35 100644 --- a/server/src/com/vaadin/server/ClientConnector.java +++ b/server/src/com/vaadin/server/ClientConnector.java @@ -26,6 +26,7 @@ import com.vaadin.shared.Connector; import com.vaadin.shared.communication.SharedState; import com.vaadin.ui.UI; import com.vaadin.util.ReflectTools; + import elemental.json.JsonObject; /** @@ -277,9 +278,8 @@ public interface ClientConnector extends Connector { * . * * @return a JSON object with the encoded connector state - * if the state can not be encoded */ - public JsonObject encodeState() ; + public JsonObject encodeState(); /** * Handle a request directed to this connector. This can be used by |