aboutsummaryrefslogtreecommitdiffstats
path: root/server/src
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2012-11-22 09:23:52 +0200
committerArtur Signell <artur@vaadin.com>2012-11-22 09:26:00 +0200
commit8bc72698c9d4231557c8845d8fc440a83c585155 (patch)
tree4f5369ad4f2736e946bd76a8e1d1d3d726a4bebc /server/src
parentfe5d8509be179fdcdf55a973175e2716e3fbceb6 (diff)
downloadvaadin-framework-8bc72698c9d4231557c8845d8fc440a83c585155.tar.gz
vaadin-framework-8bc72698c9d4231557c8845d8fc440a83c585155.zip
Fixed problem causing DragAndDropService not to receiving events (#10134)
Change-Id: Ie9cbd37231099b8d4e30dab1dc611e19805c1fc7
Diffstat (limited to 'server/src')
-rw-r--r--server/src/com/vaadin/server/AbstractCommunicationManager.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/server/src/com/vaadin/server/AbstractCommunicationManager.java b/server/src/com/vaadin/server/AbstractCommunicationManager.java
index 86a4f67b4c..cbb62ddaad 100644
--- a/server/src/com/vaadin/server/AbstractCommunicationManager.java
+++ b/server/src/com/vaadin/server/AbstractCommunicationManager.java
@@ -1799,7 +1799,9 @@ public abstract class AbstractCommunicationManager implements Serializable {
String interfaceName = invocationJson.getString(1);
String methodName = invocationJson.getString(2);
- if (connectorTracker.getConnector(connectorId) == null) {
+ if (connectorTracker.getConnector(connectorId) == null
+ && !connectorId
+ .equals(ApplicationConstants.DRAG_AND_DROP_CONNECTOR_ID)) {
getLogger().log(
Level.WARNING,
"RPC call to " + interfaceName + "." + methodName