diff options
author | Leif Åstrand <leif@vaadin.com> | 2012-08-20 11:49:48 +0300 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2012-08-20 11:49:48 +0300 |
commit | c9689846a8ba1254fb51c164cee6c3c157740eac (patch) | |
tree | 55dd0f0533f9a094c4c30a83d79e7faa7371c43e /server | |
parent | 8ed4b539378c2150af99ff4a102c47d2cf0a4a8d (diff) | |
download | vaadin-framework-c9689846a8ba1254fb51c164cee6c3c157740eac.tar.gz vaadin-framework-c9689846a8ba1254fb51c164cee6c3c157740eac.zip |
Don't import from client even for javadoc (#9026)
Diffstat (limited to 'server')
-rw-r--r-- | server/src/com/vaadin/ui/ConnectorTracker.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/src/com/vaadin/ui/ConnectorTracker.java b/server/src/com/vaadin/ui/ConnectorTracker.java index f16642d91b..2afe7f9025 100644 --- a/server/src/com/vaadin/ui/ConnectorTracker.java +++ b/server/src/com/vaadin/ui/ConnectorTracker.java @@ -26,7 +26,6 @@ import java.util.logging.Level; import java.util.logging.Logger; import com.vaadin.terminal.AbstractClientConnector; -import com.vaadin.terminal.gwt.client.ServerConnector; import com.vaadin.terminal.gwt.server.ClientConnector; /** @@ -41,7 +40,8 @@ import com.vaadin.terminal.gwt.server.ClientConnector; * Tracks which {@link ClientConnector}s are dirty so they can be updated to the * client when the following response is sent. A connector is dirty when an * operation has been performed on it on the server and as a result of this - * operation new information needs to be sent to its {@link ServerConnector}. + * operation new information needs to be sent to its + * {@link com.vaadin.terminal.gwt.client.ServerConnector}. * </p> * * @author Vaadin Ltd |