Remove transient modifiers from Node.java

This commit is contained in:
hns 2009-11-24 15:06:07 +00:00
parent e14f335253
commit 62db24a43c

View file

@ -52,17 +52,17 @@ public final class Node implements INode {
// the serialization version this object was read from (see readObject()) // the serialization version this object was read from (see readObject())
protected short version = 0; protected short version = 0;
private transient String prototype; private String prototype;
private transient NodeHandle handle; private NodeHandle handle;
private transient INode cacheNode; private INode cacheNode;
transient final WrappedNodeManager nmgr; final WrappedNodeManager nmgr;
transient DbMapping dbmap; DbMapping dbmap;
transient Key primaryKey = null; Key primaryKey = null;
transient String subnodeRelation = null; String subnodeRelation = null;
transient long lastNameCheck = 0; long lastNameCheck = 0;
transient long lastParentSet = 0; long lastParentSet = 0;
transient private volatile Transactor lock; private volatile Transactor lock;
transient private volatile int state; private volatile int state;
private static long idgen = 0; private static long idgen = 0;
/** /**