From 98d1bf611243b613f9c98753bac2a9f3eb2e1afa Mon Sep 17 00:00:00 2001 From: Joonas Lehtinen Date: Sun, 14 Jun 2009 16:40:30 +0000 Subject: [PATCH] Marked Table's internal page buffer to be transient. There is no need to serialize the buffer cache. svn changeset:8196/svn branch:6.0 --- src/com/vaadin/ui/Table.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/vaadin/ui/Table.java b/src/com/vaadin/ui/Table.java index 80e344443e..0cce132666 100644 --- a/src/com/vaadin/ui/Table.java +++ b/src/com/vaadin/ui/Table.java @@ -234,7 +234,7 @@ public class Table extends AbstractSelect implements Action.Container, /** * Page contents buffer used in buffered mode. */ - private Object[][] pageBuffer = null; + private transient Object[][] pageBuffer = null; /** * Set of properties listened - the list is kept to release the listeners -- 2.39.5