You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by er...@apache.org on 2013/11/01 12:31:53 UTC

[2/2] git commit: [flex-asjs] [refs/heads/develop] - Something doesn't like the use of 'int' as a member of 'Language', changed it to '_int'.

Something doesn't like the use of 'int' as a member of 'Language', changed it to '_int'.

Signed-off-by: Erik de Bruin <er...@ixsoftware.nl>


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/de4222b4
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/de4222b4
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/de4222b4

Branch: refs/heads/develop
Commit: de4222b4f4f8fc6cd0966f90305ef8bd77620710
Parents: 28c8ac3
Author: Erik de Bruin <er...@ixsoftware.nl>
Authored: Fri Nov 1 12:31:13 2013 +0100
Committer: Erik de Bruin <er...@ixsoftware.nl>
Committed: Fri Nov 1 12:31:13 2013 +0100

----------------------------------------------------------------------
 frameworks/js/FlexJS/src/org/apache/flex/utils/Language.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/de4222b4/frameworks/js/FlexJS/src/org/apache/flex/utils/Language.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/utils/Language.js b/frameworks/js/FlexJS/src/org/apache/flex/utils/Language.js
index 94da9ca..2f2edeb 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/utils/Language.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/utils/Language.js
@@ -53,7 +53,7 @@ org.apache.flex.utils.Language.as = function(leftOperand, rightOperand) {
  * @param {*} value The value to be cast.
  * @return {number}
  */
-org.apache.flex.utils.Language.int = function(value) {
+org.apache.flex.utils.Language._int = function(value) {
 	return value >> 0;
 };