浏览代码

Remove accidentally retained JavaDoc row

The offending row was not removed when the proceeding "@throws
JSONException" row was removed.

Change-Id: I38d914284d92554540744e8c52eefa0db78bc55d
tags/7.4.0.beta1
Leif Åstrand 9 年前
父节点
当前提交
4b58dccc09
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2
    2
      server/src/com/vaadin/server/ClientConnector.java

+ 2
- 2
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

正在加载...
取消
保存