summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorHenri Sara <henri.sara@itmill.com>2010-11-23 12:03:50 +0000
committerHenri Sara <henri.sara@itmill.com>2010-11-23 12:03:50 +0000
commit8e7e091f8077f4200d9cb36c761d6872fd878b3f (patch)
treeaedaf6ba4543599d6e44119de93972856225a42f /src
parent833feac478be8805deea40053abdff1210012e81 (diff)
downloadvaadin-framework-8e7e091f8077f4200d9cb36c761d6872fd878b3f.tar.gz
vaadin-framework-8e7e091f8077f4200d9cb36c761d6872fd878b3f.zip
#6037 portlet context was not serializable because of a non-transient portlet response field
svn changeset:16107/svn branch:6.5
Diffstat (limited to 'src')
-rw-r--r--src/com/vaadin/terminal/gwt/server/PortletApplicationContext2.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/vaadin/terminal/gwt/server/PortletApplicationContext2.java b/src/com/vaadin/terminal/gwt/server/PortletApplicationContext2.java
index 1f5c04ebe5..65548b1933 100644
--- a/src/com/vaadin/terminal/gwt/server/PortletApplicationContext2.java
+++ b/src/com/vaadin/terminal/gwt/server/PortletApplicationContext2.java
@@ -59,7 +59,7 @@ public class PortletApplicationContext2 extends AbstractWebApplicationContext {
protected HashMap<String, Application> portletWindowIdToApplicationMap = new HashMap<String, Application>();
- private PortletResponse response;
+ private transient PortletResponse response;
private final Map<String, QName> eventActionDestinationMap = new HashMap<String, QName>();
private final Map<String, Serializable> eventActionValueMap = new HashMap<String, Serializable>();