From dd750e0a06ef9424aee9541f64e516bb84390b24 Mon Sep 17 00:00:00 2001 From: hns Date: Fri, 5 Jan 2001 19:26:02 +0000 Subject: [PATCH] Made prototype transient to keep serialization compatibility with older versions --- src/helma/objectmodel/Node.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helma/objectmodel/Node.java b/src/helma/objectmodel/Node.java index 9e41192d..09dc6196 100644 --- a/src/helma/objectmodel/Node.java +++ b/src/helma/objectmodel/Node.java @@ -23,7 +23,7 @@ public class Node implements INode, Serializable { protected Vector links; // links to this node protected Vector proplinks; // nodes using this node as property - protected String prototype; + transient String prototype; protected String contentType; protected byte content[];