Remove transient modifiers from Node.java
This commit is contained in:
parent
e14f335253
commit
62db24a43c
1 changed files with 11 additions and 11 deletions
|
@ -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;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Reference in a new issue