diff options
author | Leif Åstrand <leif@vaadin.com> | 2012-10-08 17:07:25 +0300 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2012-10-08 17:07:25 +0300 |
commit | 38bfea7cfa409dfe0864a5f42fb528007499999d (patch) | |
tree | ee6fba1e14fc828d54d8b1db55698741b9a661a0 /server/src/com/vaadin/ui/UI.java | |
parent | 48c19777e566dd8cd5e496ea364de8aea447abbf (diff) | |
download | vaadin-framework-38bfea7cfa409dfe0864a5f42fb528007499999d.tar.gz vaadin-framework-38bfea7cfa409dfe0864a5f42fb528007499999d.zip |
Remove CombinedRequest and BrowserDetails (#8165)
* Primary use case for CombinedRequest (special path and parameters)
already elimiated by other changes
* BrowserDetails.getLocation is now available through Page
* BrowserDetails.getWindowName only used internally in one location
* VaadinServletRequest.cast and similar for portlets removed now that a
normal cast can always be used as there's no CombinedRequest to consider
Change-Id: I44f28722a12f86015b3c30e83768e4611b87479c
Diffstat (limited to 'server/src/com/vaadin/ui/UI.java')
-rw-r--r-- | server/src/com/vaadin/ui/UI.java | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/server/src/com/vaadin/ui/UI.java b/server/src/com/vaadin/ui/UI.java index 0954bbec13..1ac4a6cba0 100644 --- a/server/src/com/vaadin/ui/UI.java +++ b/server/src/com/vaadin/ui/UI.java @@ -43,7 +43,6 @@ import com.vaadin.server.PaintTarget; import com.vaadin.server.Resource; import com.vaadin.server.UIProvider; import com.vaadin.server.VaadinRequest; -import com.vaadin.server.VaadinRequest.BrowserDetails; import com.vaadin.server.VaadinService; import com.vaadin.server.VaadinServiceSession; import com.vaadin.server.VaadinServlet; @@ -1003,8 +1002,7 @@ public abstract class UI extends AbstractComponentContainer implements * state of the UI is not properly set up when the constructor is invoked. * <p> * The {@link VaadinRequest} can be used to get information about the - * request that caused this UI to be created. {@link BrowserDetails} will be - * available in the request. + * request that caused this UI to be created. * </p> * * @param request |