From 53a9c1123a9bfbf73b9d46a58a38913845a319ed Mon Sep 17 00:00:00 2001 From: =?utf8?q?Johannes=20Dahlstr=C3=B6m?= Date: Wed, 22 May 2013 16:50:17 +0300 Subject: [PATCH] Fix TestingPushConnection.init signature (#11673) Change-Id: I7f5736fd456c21878a0eabdbff46a648932d3516 --- .../tests/widgetset/client/TestingPushConnection.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/uitest/src/com/vaadin/tests/widgetset/client/TestingPushConnection.java b/uitest/src/com/vaadin/tests/widgetset/client/TestingPushConnection.java index 8d00598907..e255a5f95a 100644 --- a/uitest/src/com/vaadin/tests/widgetset/client/TestingPushConnection.java +++ b/uitest/src/com/vaadin/tests/widgetset/client/TestingPushConnection.java @@ -2,6 +2,7 @@ package com.vaadin.tests.widgetset.client; import com.google.gwt.user.client.Window; import com.vaadin.client.ApplicationConnection; +import com.vaadin.client.ApplicationConnection.CommunicationErrorHandler; import com.vaadin.client.communication.AtmospherePushConnection; public class TestingPushConnection extends AtmospherePushConnection { @@ -9,8 +10,9 @@ public class TestingPushConnection extends AtmospherePushConnection { private String transport; @Override - public void init(ApplicationConnection connection) { - super.init(connection); + public void init(ApplicationConnection connection, + CommunicationErrorHandler errorHandler) { + super.init(connection, errorHandler); transport = Window.Location.getParameter("transport"); } -- 2.39.5