From ff35a07fa3df46681dc0089b5767a2ed105f03c8 Mon Sep 17 00:00:00 2001 From: hns Date: Mon, 14 Sep 2009 20:02:14 +0000 Subject: [PATCH] Make fields protected for easier subclassing. --- src/helma/objectmodel/db/SubnodeList.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/helma/objectmodel/db/SubnodeList.java b/src/helma/objectmodel/db/SubnodeList.java index b01e3dea..803e5569 100644 --- a/src/helma/objectmodel/db/SubnodeList.java +++ b/src/helma/objectmodel/db/SubnodeList.java @@ -25,11 +25,11 @@ import java.io.Serializable; */ public class SubnodeList implements Serializable { - Node node; - List list; + protected Node node; + protected List list; - transient long lastSubnodeFetch = 0; - transient long lastSubnodeChange = 0; + transient protected long lastSubnodeFetch = 0; + transient protected long lastSubnodeChange = 0; /**