r9858 - helma/helma/trunk/src/helma/scripting/rhino
[email protected] Tue, 8 Sep 2009 21:52:11 +0200 (CEST)
| Newsgroups | gmane.comp.java.helma.cvs |
|---|---|
| Message-ID | <20090908195211.7C6C23D0E3@mia> |
Author: hannes
Date: 2009-09-08 21:52:11 +0200 (Tue, 08 Sep 2009)
New Revision: 9858
Modified:
helma/helma/trunk/src/helma/scripting/rhino/SerializationProxy.java
Log:
Fix bug in HopObjectProxy: use Node handle instead of node key.
Details at http://dev.helma.org/trac/helma/changeset/9858
Modified: helma/helma/trunk/src/helma/scripting/rhino/SerializationProxy.java
===================================================================
--- helma/helma/trunk/src/helma/scripting/rhino/SerializationProxy.java 2009-09-08 19:51:28 UTC (rev 9857)
+++ helma/helma/trunk/src/helma/scripting/rhino/SerializationProxy.java 2009-09-08 19:52:11 UTC (rev 9858)
@@ -94,7 +94,7 @@
}
HopObjectProxy(Node node) {
- ref = new NodeHandle(node.getKey());
+ ref = node.getHandle();
}
/**