Marked transient fields accordingly so that the Marshaller doesn't try to

send them over the wire.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1588 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2002-07-18 00:41:59 +00:00
parent 7a1a162a0d
commit e9ceaa6ae9
@@ -1,5 +1,5 @@
// //
// $Id: DObject.java,v 1.44 2002/05/31 20:47:55 mdb Exp $ // $Id: DObject.java,v 1.45 2002/07/18 00:41:59 mdb Exp $
package com.threerings.presents.dobj; package com.threerings.presents.dobj;
@@ -683,28 +683,28 @@ public class DObject
} }
/** Our object id. */ /** Our object id. */
protected int _oid; protected transient int _oid;
/** A reference to our object manager. */ /** A reference to our object manager. */
protected DObjectManager _omgr; protected transient DObjectManager _omgr;
/** The entity that tells us if an event or subscription request /** The entity that tells us if an event or subscription request
* should be allowed. */ * should be allowed. */
protected AccessController _controller; protected transient AccessController _controller;
/** A list of outstanding locks. */ /** A list of outstanding locks. */
protected Object[] _locks; protected transient Object[] _locks;
/** Our subscribers list. */ /** Our subscribers list. */
protected Object[] _subs; protected transient Object[] _subs;
/** Our event listeners list. */ /** Our event listeners list. */
protected Object[] _listeners; protected transient Object[] _listeners;
/** Our subscriber count. */ /** Our subscriber count. */
protected int _scount; protected transient int _scount;
/** The compound event associated with our transaction, if we're /** The compound event associated with our transaction, if we're
* currently in a transaction. */ * currently in a transaction. */
protected CompoundEvent _tevent; protected transient CompoundEvent _tevent;
} }