diff options
author | John Alhroos <john.ahlroos@itmill.com> | 2011-08-09 05:35:49 +0000 |
---|---|---|
committer | John Alhroos <john.ahlroos@itmill.com> | 2011-08-09 05:35:49 +0000 |
commit | 1cc55d854dbe7ae7c0edc0b3584c2177363091de (patch) | |
tree | bd681612f3ec8a664e7b592ac160bbc660f91090 /src/com/vaadin | |
parent | 782a0d7d1c4c830f965e78777973587b6ac8fffa (diff) | |
download | vaadin-framework-1cc55d854dbe7ae7c0edc0b3584c2177363091de.tar.gz vaadin-framework-1cc55d854dbe7ae7c0edc0b3584c2177363091de.zip |
Made portlet session transient #7366
svn changeset:20187/svn branch:6.6
Diffstat (limited to 'src/com/vaadin')
-rw-r--r-- | src/com/vaadin/terminal/gwt/server/PortletApplicationContext.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/vaadin/terminal/gwt/server/PortletApplicationContext.java b/src/com/vaadin/terminal/gwt/server/PortletApplicationContext.java index fac1f17ba7..49d40cbc62 100644 --- a/src/com/vaadin/terminal/gwt/server/PortletApplicationContext.java +++ b/src/com/vaadin/terminal/gwt/server/PortletApplicationContext.java @@ -29,7 +29,7 @@ import com.vaadin.Application; public class PortletApplicationContext extends WebApplicationContext implements Serializable { - protected PortletSession portletSession; + protected transient PortletSession portletSession; protected Map<Application, Set<PortletListener>> portletListeners = new HashMap<Application, Set<PortletListener>>(); |