diff options
author | Leif Åstrand <leif@vaadin.com> | 2012-09-12 10:53:58 +0300 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2012-09-12 10:54:09 +0300 |
commit | 8e81fddf7337916adef3d78be72a42efa312ddce (patch) | |
tree | f7a49ab3e34cbf3f2ee96e3075e47a1c390aa3f7 | |
parent | fc2bc2868bc10553c20688012e42f2bba9a64272 (diff) | |
download | vaadin-framework-8e81fddf7337916adef3d78be72a42efa312ddce.tar.gz vaadin-framework-8e81fddf7337916adef3d78be72a42efa312ddce.zip |
Don't check UI provider before running onVaadinSessionStarted (#9556)
-rw-r--r-- | server/src/com/vaadin/server/VaadinPortlet.java | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/server/src/com/vaadin/server/VaadinPortlet.java b/server/src/com/vaadin/server/VaadinPortlet.java index 026873a04d..940a4925c8 100644 --- a/server/src/com/vaadin/server/VaadinPortlet.java +++ b/server/src/com/vaadin/server/VaadinPortlet.java @@ -862,12 +862,6 @@ public class VaadinPortlet extends GenericPortlet implements Constants { WrappedPortletRequest request) throws PortletException { VaadinPortletSession newApplication = createApplication(); - try { - ServletPortletHelper.checkUiProviders(newApplication); - } catch (ApplicationClassException e) { - throw new PortletException(e); - } - newApplication.storeInSession(new WrappedPortletSession(request .getPortletRequest().getPortletSession())); |