diff options
author | Artur <artur@vaadin.com> | 2017-07-27 09:29:14 +0300 |
---|---|---|
committer | Henri Sara <henri.sara@gmail.com> | 2017-07-27 09:29:14 +0300 |
commit | b4243fe81aefd2f7f61d0a5bc644424616f2312c (patch) | |
tree | 96f14223c144c6290b64e2a783370fdfa849a1af /server | |
parent | a41dedacfa0fb15d348719cf9b35185ac16a36ed (diff) | |
download | vaadin-framework-b4243fe81aefd2f7f61d0a5bc644424616f2312c.tar.gz vaadin-framework-b4243fe81aefd2f7f61d0a5bc644424616f2312c.zip |
Remove portlet dependency/import (#9741)
Diffstat (limited to 'server')
-rw-r--r-- | server/src/main/java/com/vaadin/server/VaadinSession.java | 6 |
1 files 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. * <p> * Everything inside a {@link VaadinSession} should be serializable to ensure * compatibility with schemes using serialization for persisting the session |