From: Jouni Koivuviita Date: Fri, 23 Oct 2009 12:19:03 +0000 (+0000) Subject: Fixes #3565: CommunicationManager is not serializable X-Git-Tag: 6.7.0.beta1~2393 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=bad6fc68d11217f00df1f674228bef2c17a33d2e;p=vaadin-framework.git Fixes #3565: CommunicationManager is not serializable * Added 'implements Serializable' to OpenWindowCache class svn changeset:9336/svn branch:6.2 --- diff --git a/src/com/vaadin/terminal/gwt/server/CommunicationManager.java b/src/com/vaadin/terminal/gwt/server/CommunicationManager.java index 2dfa6b1a19..8e73098454 100644 --- a/src/com/vaadin/terminal/gwt/server/CommunicationManager.java +++ b/src/com/vaadin/terminal/gwt/server/CommunicationManager.java @@ -1594,7 +1594,7 @@ public class CommunicationManager implements Paintable.RepaintRequestListener, * * TODO make customlayout templates (from theme) to be cached here. */ - class OpenWindowCache { + class OpenWindowCache implements Serializable { private Set res = new HashSet();