From b4243fe81aefd2f7f61d0a5bc644424616f2312c Mon Sep 17 00:00:00 2001 From: Artur Date: Thu, 27 Jul 2017 09:29:14 +0300 Subject: [PATCH] Remove portlet dependency/import (#9741) --- server/src/main/java/com/vaadin/server/VaadinSession.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/server/src/main/java/com/vaadin/server/VaadinSession.java b/server/src/main/java/com/vaadin/server/VaadinSession.java index 14610984ec..671b35ae66 100644 --- a/server/src/main/java/com/vaadin/server/VaadinSession.java +++ b/server/src/main/java/com/vaadin/server/VaadinSession.java @@ -42,7 +42,6 @@ import java.util.concurrent.locks.ReentrantLock; import java.util.logging.Level; import java.util.logging.Logger; -import javax.portlet.PortletSession; import javax.servlet.http.HttpSession; import javax.servlet.http.HttpSessionBindingEvent; import javax.servlet.http.HttpSessionBindingListener; @@ -56,8 +55,9 @@ import com.vaadin.util.ReflectTools; /** * Contains everything that Vaadin needs to store for a specific user. This is - * typically stored in a {@link HttpSession} or {@link PortletSession}, but - * others storage mechanisms might also be used. + * typically stored in a javax.servlet.http.HttpSession or + * javax.portlet.PortletSession, but others storage mechanisms might also be + * used. *

* Everything inside a {@link VaadinSession} should be serializable to ensure * compatibility with schemes using serialization for persisting the session -- 2.39.5