diff options
author | Leif Åstrand <leif@vaadin.com> | 2012-11-20 11:46:12 +0200 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2012-11-20 14:43:11 +0200 |
commit | 276d5f405910e6d91610a8e15697b8383448da84 (patch) | |
tree | 341168f64433a20f9c48e3ea11e3f1b71a74af93 /uitest/src/com/vaadin/tests/tickets | |
parent | 65981705b433d9ed02c667a2d838ced2b6314573 (diff) | |
download | vaadin-framework-276d5f405910e6d91610a8e15697b8383448da84.tar.gz vaadin-framework-276d5f405910e6d91610a8e15697b8383448da84.zip |
Rename VaadinRequest.getRequestPathInfo() to getPathInfo() (#9749)
Change-Id: Ibf460de507b4eea156a794304476b547bf63291a
Diffstat (limited to 'uitest/src/com/vaadin/tests/tickets')
-rw-r--r-- | uitest/src/com/vaadin/tests/tickets/Ticket1589.java | 2 | ||||
-rw-r--r-- | uitest/src/com/vaadin/tests/tickets/Ticket2292.java | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/uitest/src/com/vaadin/tests/tickets/Ticket1589.java b/uitest/src/com/vaadin/tests/tickets/Ticket1589.java index 9b5be40aa3..db6fa682fc 100644 --- a/uitest/src/com/vaadin/tests/tickets/Ticket1589.java +++ b/uitest/src/com/vaadin/tests/tickets/Ticket1589.java @@ -54,7 +54,7 @@ class MyDynamicResource implements RequestHandler { @Override public boolean handleRequest(VaadinSession session, VaadinRequest request, VaadinResponse response) throws IOException { - String relativeUri = request.getRequestPathInfo(); + String relativeUri = request.getPathInfo(); // Catch the given URI that identifies the resource, otherwise let other // URI handlers or the Application to handle the response. if (!relativeUri.startsWith("myresource")) { diff --git a/uitest/src/com/vaadin/tests/tickets/Ticket2292.java b/uitest/src/com/vaadin/tests/tickets/Ticket2292.java index 2fd843ede6..e81ad3185a 100644 --- a/uitest/src/com/vaadin/tests/tickets/Ticket2292.java +++ b/uitest/src/com/vaadin/tests/tickets/Ticket2292.java @@ -50,7 +50,7 @@ public class Ticket2292 extends com.vaadin.server.LegacyApplication implements @Override public boolean handleRequest(VaadinSession session, VaadinRequest request, VaadinResponse response) throws IOException { - String relativeUri = request.getRequestPathInfo(); + String relativeUri = request.getPathInfo(); if (!relativeUri.contains("icon.png")) { return false; |