Browse Source

minor fixes

Nicolas Cannasse 17 years ago
parent
commit
c55b3da85b
2 changed files with 2 additions and 2 deletions
  1. 1 1
      std/flash9/utils/IDataInput.hx
  2. 1 1
      std/flash9/utils/ObjectInput.hx

+ 1 - 1
std/flash9/utils/IDataInput.hx

@@ -11,7 +11,7 @@ extern interface IDataInput {
 	function readFloat() : Float;
 	function readFloat() : Float;
 	function readInt() : Int;
 	function readInt() : Int;
 	function readMultiByte(length : UInt, charSet : String) : String;
 	function readMultiByte(length : UInt, charSet : String) : String;
-	function readObject() : Void;
+	function readObject() : Dynamic;
 	function readShort() : Int;
 	function readShort() : Int;
 	function readUTF() : String;
 	function readUTF() : String;
 	function readUTFBytes(length : UInt) : String;
 	function readUTFBytes(length : UInt) : String;

+ 1 - 1
std/flash9/utils/ObjectInput.hx

@@ -12,7 +12,7 @@ extern class ObjectInput implements IDataInput {
 	function readFloat() : Float;
 	function readFloat() : Float;
 	function readInt() : Int;
 	function readInt() : Int;
 	function readMultiByte(length : UInt, charSet : String) : String;
 	function readMultiByte(length : UInt, charSet : String) : String;
-	function readObject() : Void;
+	function readObject() : Dynamic;
 	function readShort() : Int;
 	function readShort() : Int;
 	function readUTF() : String;
 	function readUTF() : String;
 	function readUTFBytes(length : UInt) : String;
 	function readUTFBytes(length : UInt) : String;