Auto-unwrap invocation response arguments as well.

Make Long not wrapped for now.
Don't svn update until after mdb regenerates everything..


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4569 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2007-02-12 21:49:21 +00:00
parent b217e87519
commit 69ea4f349f
2 changed files with 20 additions and 9 deletions
+2 -2
View File
@@ -4,7 +4,7 @@ package com.threerings.util {
* Equivalent to java.lang.Long.
*/
public class Long
implements Equalable, Wrapped
implements Equalable
{
public var high :int;
public var low :int;
@@ -30,7 +30,7 @@ public class Long
return (this.high == that.high) && (this.low == that.low);
}
// from Wrapped
// from Wrapped, except that we don't implement Wrapped anymore
public function unwrap () :Object
{
return low; // TODO