You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by jm...@apache.org on 2013/05/05 01:57:24 UTC

[2/2] git commit: [flex-sdk] [refs/heads/develop] - fix hasOwnProperty call

fix hasOwnProperty call


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

Branch: refs/heads/develop
Commit: 34ba96e5e4d41ff8be359b6217a32d45bec8ad2b
Parents: 6559750
Author: Justin Mclean <jm...@apache.org>
Authored: Sun May 5 09:56:09 2013 +1000
Committer: Justin Mclean <jm...@apache.org>
Committed: Sun May 5 09:56:09 2013 +1000

----------------------------------------------------------------------
 .../projects/rpc/src/mx/utils/RPCObjectUtil.as     |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/34ba96e5/frameworks/projects/rpc/src/mx/utils/RPCObjectUtil.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/rpc/src/mx/utils/RPCObjectUtil.as b/frameworks/projects/rpc/src/mx/utils/RPCObjectUtil.as
index 8f82bd9..bc75dba 100644
--- a/frameworks/projects/rpc/src/mx/utils/RPCObjectUtil.as
+++ b/frameworks/projects/rpc/src/mx/utils/RPCObjectUtil.as
@@ -540,7 +540,7 @@ public class RPCObjectUtil
             var qName:QName;
 			var includeTransients:Boolean;
 			
-			includeTransients = options.hasOwnProperty(includeTransient) && options.includeTransient;
+			includeTransients = options.hasOwnProperty("includeTransient") && options.includeTransient;
 			
             for (i = 0; i < length; i++)
             {