diff options
author | Leif Åstrand <leif@vaadin.com> | 2012-11-19 12:28:23 +0200 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2012-11-19 12:28:23 +0200 |
commit | 17ec88776b8ef9118d964b7de54f492aaaa64f26 (patch) | |
tree | 97e456c6bb6e652edbd61ab3099f886ca93d08d0 /uitest/src/com | |
parent | 008dd4cf731522543c80ea81c0d5dca35f85c90b (diff) | |
download | vaadin-framework-17ec88776b8ef9118d964b7de54f492aaaa64f26.tar.gz vaadin-framework-17ec88776b8ef9118d964b7de54f492aaaa64f26.zip |
Fix renamed class
Change-Id: I90e66d440666480d558f83cb7e5277c10ed6177b
Diffstat (limited to 'uitest/src/com')
-rw-r--r-- | uitest/src/com/vaadin/tests/application/NavigateWithOngoingXHR.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/uitest/src/com/vaadin/tests/application/NavigateWithOngoingXHR.java b/uitest/src/com/vaadin/tests/application/NavigateWithOngoingXHR.java index e11a18d895..5e3094b66c 100644 --- a/uitest/src/com/vaadin/tests/application/NavigateWithOngoingXHR.java +++ b/uitest/src/com/vaadin/tests/application/NavigateWithOngoingXHR.java @@ -23,7 +23,7 @@ import com.vaadin.server.ExternalResource; import com.vaadin.server.RequestHandler; import com.vaadin.server.VaadinRequest; import com.vaadin.server.VaadinResponse; -import com.vaadin.server.VaadinServiceSession; +import com.vaadin.server.VaadinSession; import com.vaadin.shared.ui.progressindicator.ProgressIndicatorServerRpc; import com.vaadin.tests.components.AbstractTestUI; import com.vaadin.ui.Link; @@ -32,7 +32,7 @@ import com.vaadin.ui.ProgressIndicator; public class NavigateWithOngoingXHR extends AbstractTestUI { private final RequestHandler slowRequestHandler = new RequestHandler() { @Override - public boolean handleRequest(VaadinServiceSession session, + public boolean handleRequest(VaadinSession session, VaadinRequest request, VaadinResponse response) throws IOException { if ("/slowRequestHandler".equals(request.getRequestPathInfo())) { |