aboutsummaryrefslogtreecommitdiffstats
path: root/server/src
diff options
context:
space:
mode:
authorLeif Åstrand <leif@vaadin.com>2012-11-22 07:56:17 +0000
committerVaadin Code Review <review@vaadin.com>2012-11-22 07:56:17 +0000
commitc53ebc4e9297d9d7b57c91986b348abf9a752303 (patch)
treedd2244bd425c2f75c85efd1910a88ff9c090d3bd /server/src
parent8e2be0633ed221455bb94988321f1a81c11527fe (diff)
parent8bc72698c9d4231557c8845d8fc440a83c585155 (diff)
downloadvaadin-framework-c53ebc4e9297d9d7b57c91986b348abf9a752303.tar.gz
vaadin-framework-c53ebc4e9297d9d7b57c91986b348abf9a752303.zip
Merge "Fixed problem causing DragAndDropService not to receiving events (#10134)"
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