diff options
author | Leif Åstrand <leif@vaadin.com> | 2012-09-21 15:00:08 +0300 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2012-09-21 15:00:08 +0300 |
commit | bec5d96c5bdea6f4903ef8b85d056d1d8ff6924d (patch) | |
tree | 8ac041519103dcbaaee25cc95d95ee05048337d1 /uitest/src/com/vaadin/launcher | |
parent | 360f19b82e5b5d5d2646e444f274d5643f93d3d5 (diff) | |
download | vaadin-framework-bec5d96c5bdea6f4903ef8b85d056d1d8ff6924d.tar.gz vaadin-framework-bec5d96c5bdea6f4903ef8b85d056d1d8ff6924d.zip |
Merge UIProvider and AbstractUIProvider (#9642)
Diffstat (limited to 'uitest/src/com/vaadin/launcher')
-rw-r--r-- | uitest/src/com/vaadin/launcher/ApplicationRunnerServlet.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/uitest/src/com/vaadin/launcher/ApplicationRunnerServlet.java b/uitest/src/com/vaadin/launcher/ApplicationRunnerServlet.java index 971102495d..8954a537c5 100644 --- a/uitest/src/com/vaadin/launcher/ApplicationRunnerServlet.java +++ b/uitest/src/com/vaadin/launcher/ApplicationRunnerServlet.java @@ -30,7 +30,7 @@ import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import com.vaadin.LegacyApplication; -import com.vaadin.server.AbstractUIProvider; +import com.vaadin.server.UIProvider; import com.vaadin.server.DeploymentConfiguration; import com.vaadin.server.LegacyVaadinServlet; import com.vaadin.server.ServiceException; @@ -144,7 +144,7 @@ public class ApplicationRunnerServlet extends LegacyVaadinServlet { final Class<?> classToRun = getClassToRun(); if (UI.class.isAssignableFrom(classToRun)) { getVaadinService().addUIProvider(session, - new AbstractUIProvider() { + new UIProvider() { @Override public Class<? extends UI> getUIClass( VaadinRequest request) { |