From fcdace55898eb856e1f693b9d3e385b16700cd55 Mon Sep 17 00:00:00 2001 From: Ray Greenwell Date: Wed, 5 Dec 2007 02:25:44 +0000 Subject: [PATCH] Some method documentation. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4902 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/as/com/threerings/io/ObjectInputStream.as | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/as/com/threerings/io/ObjectInputStream.as b/src/as/com/threerings/io/ObjectInputStream.as index 0a53b5a0a..b35f8e9e3 100644 --- a/src/as/com/threerings/io/ObjectInputStream.as +++ b/src/as/com/threerings/io/ObjectInputStream.as @@ -205,6 +205,10 @@ public class ObjectInputStream return _source.readByte(); } + /** + * Read bytes into the byte array. If length is not specified, then + * enough bytes to fill the array (from the offset) are read. + */ public function readBytes (bytes :ByteArray, offset :uint = 0, length :int = -1) :void //throws IOError