You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ha...@apache.org on 2018/12/30 11:51:26 UTC

[royale-asjs] branch develop updated: Missing parameter types

This is an automated email from the ASF dual-hosted git repository.

harbs pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git


The following commit(s) were added to refs/heads/develop by this push:
     new b8ce265  Missing parameter types
b8ce265 is described below

commit b8ce265055009b25cdaac36e5b1839221672efa9
Author: Harbs <ha...@in-tools.com>
AuthorDate: Sun Dec 30 13:51:17 2018 +0200

    Missing parameter types
---
 .../main/royale/org/apache/royale/net/remoting/amf/AMFBinaryData.as | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/frameworks/projects/Network/src/main/royale/org/apache/royale/net/remoting/amf/AMFBinaryData.as b/frameworks/projects/Network/src/main/royale/org/apache/royale/net/remoting/amf/AMFBinaryData.as
index b1fff6c..ac696ba 100644
--- a/frameworks/projects/Network/src/main/royale/org/apache/royale/net/remoting/amf/AMFBinaryData.as
+++ b/frameworks/projects/Network/src/main/royale/org/apache/royale/net/remoting/amf/AMFBinaryData.as
@@ -291,7 +291,7 @@ public class AMFBinaryData implements IDataInput, IDataOutput
         this.write((v >>> 0) & 255);
     };
     
-    public function writeUInt32(v):void
+    public function writeUInt32(v:uint):void
     {
         v < 0 && (v = -(v ^ UINT_MAX_VALUE) - 1);
         v &= UINT_MAX_VALUE;
@@ -377,7 +377,7 @@ public class AMFBinaryData implements IDataInput, IDataOutput
         }
     };
     
-    private function stringByReference(v):uint
+    private function stringByReference(v:String):uint
     {
         var ref:uint = this.strings[v];
         if (ref) 
@@ -387,7 +387,7 @@ public class AMFBinaryData implements IDataInput, IDataOutput
         return ref;
     };
     
-    public function objectByReference(v):uint
+    public function objectByReference(v:Object):uint
     {
         var ref:uint = 0;
         var found:Boolean = false;