summaryrefslogtreecommitdiffstats
path: root/uitest
diff options
context:
space:
mode:
authorJohannes Dahlström <johannesd@vaadin.com>2013-05-22 16:50:17 +0300
committerVaadin Code Review <review@vaadin.com>2013-05-22 13:56:49 +0000
commit53a9c1123a9bfbf73b9d46a58a38913845a319ed (patch)
tree4f9fdeb04d3b49e142460bebb13577e84ddf7d07 /uitest
parent6bf83a428aa747f6b46d1d4c4ad2e279971d14e7 (diff)
downloadvaadin-framework-53a9c1123a9bfbf73b9d46a58a38913845a319ed.tar.gz
vaadin-framework-53a9c1123a9bfbf73b9d46a58a38913845a319ed.zip
Fix TestingPushConnection.init signature (#11673)
Change-Id: I7f5736fd456c21878a0eabdbff46a648932d3516
Diffstat (limited to 'uitest')
-rw-r--r--uitest/src/com/vaadin/tests/widgetset/client/TestingPushConnection.java6
1 files 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");
}