r9993 - helma/helma/trunk/src/helma/objectmodel/db
[email protected] Tue, 24 Nov 2009 16:06:07 +0100 (CET)
| Newsgroups | gmane.comp.java.helma.cvs |
|---|---|
| Message-ID | <20091124150607.B6B6A3D0E2@mia> |
Author: hannes
Date: 2009-11-24 16:06:07 +0100 (Tue, 24 Nov 2009)
New Revision: 9993
Modified:
helma/helma/trunk/src/helma/objectmodel/db/Node.java
Log:
Remove transient modifiers from Node.java
Details at http://dev.helma.org/trac/helma/changeset/9993
Modified: helma/helma/trunk/src/helma/objectmodel/db/Node.java
===================================================================
--- helma/helma/trunk/src/helma/objectmodel/db/Node.java 2009-11-24 10:34:50 UTC (rev 9992)
+++ helma/helma/trunk/src/helma/objectmodel/db/Node.java 2009-11-24 15:06:07 UTC (rev 9993)
@@ -52,17 +52,17 @@
// the serialization version this object was read from (see readObject())
protected short version = 0;
- private transient String prototype;
- private transient NodeHandle handle;
- private transient INode cacheNode;
- transient final WrappedNodeManager nmgr;
- transient DbMapping dbmap;
- transient Key primaryKey = null;
- transient String subnodeRelation = null;
- transient long lastNameCheck = 0;
- transient long lastParentSet = 0;
- transient private volatile Transactor lock;
- transient private volatile int state;
+ private String prototype;
+ private NodeHandle handle;
+ private INode cacheNode;
+ final WrappedNodeManager nmgr;
+ DbMapping dbmap;
+ Key primaryKey = null;
+ String subnodeRelation = null;
+ long lastNameCheck = 0;
+ long lastParentSet = 0;
+ private volatile Transactor lock;
+ private volatile int state;
private static long idgen = 0;
/**