Make fields protected for easier subclassing.

This commit is contained in:
hns 2009-09-14 20:02:14 +00:00
parent 64b778f11a
commit ff35a07fa3

View file

@ -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;
/**