diff options
author | Leif Åstrand <leif@vaadin.com> | 2012-09-06 16:58:43 +0300 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2012-09-06 17:07:49 +0300 |
commit | 4011783ed51dffe80ceb5642c02d65033de6d400 (patch) | |
tree | 46f43c481fde0b06c443269f7c84ee180ae48f2e /uitest/src/com/vaadin/launcher | |
parent | a64b703b2bd714f8ff1c6cfd1b8b89908e502691 (diff) | |
download | vaadin-framework-4011783ed51dffe80ceb5642c02d65033de6d400.tar.gz vaadin-framework-4011783ed51dffe80ceb5642c02d65033de6d400.zip |
Remove Application from UIProvider API (#9402)
Diffstat (limited to 'uitest/src/com/vaadin/launcher')
-rw-r--r-- | uitest/src/com/vaadin/launcher/ApplicationRunnerServlet.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/uitest/src/com/vaadin/launcher/ApplicationRunnerServlet.java b/uitest/src/com/vaadin/launcher/ApplicationRunnerServlet.java index b483a9fd9d..029bebd9c9 100644 --- a/uitest/src/com/vaadin/launcher/ApplicationRunnerServlet.java +++ b/uitest/src/com/vaadin/launcher/ApplicationRunnerServlet.java @@ -35,7 +35,6 @@ import com.vaadin.server.DeploymentConfiguration; import com.vaadin.server.LegacyVaadinServlet; import com.vaadin.server.UIProvider; import com.vaadin.server.VaadinServletSession; -import com.vaadin.server.VaadinSession; import com.vaadin.server.WrappedHttpServletRequest; import com.vaadin.server.WrappedRequest; import com.vaadin.tests.components.TestBase; @@ -122,7 +121,7 @@ public class ApplicationRunnerServlet extends LegacyVaadinServlet { @Override public Class<? extends UI> getUIClass( - VaadinSession application, WrappedRequest request) { + WrappedRequest request) { return (Class<? extends UI>) classToRun; } }); |