aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2013-04-07 18:29:55 +0300
committerArtur Signell <artur@vaadin.com>2013-04-07 18:29:55 +0300
commit708319b840380a9d96c510d5e24f2890071ec470 (patch)
tree9a78b41d4a3d23cee7f4c7af0e3655a47e901b5e
parentc926a09f54cd08856c8cd7a15fd00cf0b62b63b5 (diff)
downloadvaadin-framework-708319b840380a9d96c510d5e24f2890071ec470.tar.gz
vaadin-framework-708319b840380a9d96c510d5e24f2890071ec470.zip
Push if there are dirty connectors, avoid push if there are NOT dirty connectors
Change-Id: Iebac314565e443eb67d206c755e2d4bb385cffe8
-rw-r--r--server/src/com/vaadin/ui/UI.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/com/vaadin/ui/UI.java b/server/src/com/vaadin/ui/UI.java
index 6b906b8eab..65f9e60a66 100644
--- a/server/src/com/vaadin/ui/UI.java
+++ b/server/src/com/vaadin/ui/UI.java
@@ -1141,7 +1141,7 @@ public abstract class UI extends AbstractSingleComponentContainer implements
public void push() {
VaadinSession session = getSession();
if (session != null) {
- if (getConnectorTracker().hasDirtyConnectors()) {
+ if (!getConnectorTracker().hasDirtyConnectors()) {
// Do not push if there is nothing to push
return;
}