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 5025975 Method signatures should matrch
5025975 is described below
commit 5025975336c04bd4bc828e3130b8c8d54c50e12c
Author: Harbs <[email protected]>
AuthorDate: Mon Feb 11 10:26:03 2019 +0200
Method signatures should matrch
---
frameworks/projects/XML/src/main/royale/XMLList.as | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/frameworks/projects/XML/src/main/royale/XMLList.as
b/frameworks/projects/XML/src/main/royale/XMLList.as
index e3933ce..49a902d 100644
--- a/frameworks/projects/XML/src/main/royale/XMLList.as
+++ b/frameworks/projects/XML/src/main/royale/XMLList.as
@@ -1131,7 +1131,7 @@ package
{
return isSingle() ?
_xmlArray[0].toExponential(fractionDigits) : NaN;
}
- public function toFixed(digits:*=undefined):Number
+ public function toFixed(digits:int=0):Number
{
return isSingle() ? _xmlArray[0].toFixed(digits) : NaN;
}