From ceb91c2f3c283177b36af6cb046723167493baf9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Leif=20=C3=85strand?= Date: Mon, 8 Apr 2013 16:48:04 +0300 Subject: [PATCH] Don't initialize PushConnection by default (#11512) Change-Id: I22a7524dd213058fe4a54852a2f3c67e8989b538 --- server/src/com/vaadin/ui/UI.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/com/vaadin/ui/UI.java b/server/src/com/vaadin/ui/UI.java index 65f9e60a66..2d9f49b122 100644 --- a/server/src/com/vaadin/ui/UI.java +++ b/server/src/com/vaadin/ui/UI.java @@ -472,7 +472,7 @@ public abstract class UI extends AbstractSingleComponentContainer implements private Navigator navigator; - private PushConnection pushConnection = new PushConnection(this); + private PushConnection pushConnection = null; /** * This method is used by Component.Focusable objects to request focus to -- 2.39.5