Wrapped -> Boxed.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5195 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2008-06-23 21:09:14 +00:00
parent 0d93214e22
commit f3abe8507b
14 changed files with 54 additions and 44 deletions
+3 -3
View File
@@ -29,7 +29,7 @@ import com.threerings.io.Streamable;
* Equivalent to java.lang.Boolean.
*/
public class langBoolean
implements Equalable, Streamable, Wrapped
implements Equalable, Streamable, Boxed
{
public var value :Boolean;
@@ -62,8 +62,8 @@ public class langBoolean
value = ins.readBoolean();
}
// from Wrapped
public function unwrap () :Object
// from Boxed
public function unbox () :Object
{
return value;
}