From 5560bf59d24918fb146530730a3a4a3afa83a65e Mon Sep 17 00:00:00 2001 From: Jonatan Kronqvist Date: Fri, 16 May 2014 10:50:09 +0300 Subject: [PATCH] Remove servlet annotations from AsyncPushUpdates test (#13562) Change-Id: Idfdd37fad9917843c71cee6fd9ba6700f9df8a87 --- .../vaadin/tests/components/table/AsyncPushUpdates.java | 9 --------- 1 file changed, 9 deletions(-) diff --git a/uitest/src/com/vaadin/tests/components/table/AsyncPushUpdates.java b/uitest/src/com/vaadin/tests/components/table/AsyncPushUpdates.java index fcbfe1e0b0..6f9f1df89f 100644 --- a/uitest/src/com/vaadin/tests/components/table/AsyncPushUpdates.java +++ b/uitest/src/com/vaadin/tests/components/table/AsyncPushUpdates.java @@ -15,13 +15,9 @@ */ package com.vaadin.tests.components.table; -import javax.servlet.annotation.WebServlet; - import com.vaadin.annotations.Push; -import com.vaadin.annotations.VaadinServletConfiguration; import com.vaadin.data.util.IndexedContainer; import com.vaadin.server.VaadinRequest; -import com.vaadin.server.VaadinServlet; import com.vaadin.tests.components.AbstractTestUI; import com.vaadin.ui.Button; import com.vaadin.ui.Button.ClickEvent; @@ -37,11 +33,6 @@ public class AsyncPushUpdates extends AbstractTestUI { public int clickCount = 0; - @WebServlet(value = "/*", asyncSupported = true) - @VaadinServletConfiguration(productionMode = false, ui = AsyncPushUpdates.class) - public static class Servlet extends VaadinServlet { - } - public static final String VALUE_PROPERTY_ID = "value"; private final IndexedContainer container = createContainer(); -- 2.39.5