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/04/29 01:11:10 UTC

git commit: [flex-sdk] - Fixed issue with O vs OO support

Updated Branches:
  refs/heads/develop e06283e81 -> a5e7e1525


Fixed issue with O vs OO support


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

Branch: refs/heads/develop
Commit: a5e7e15254bbd8d9458689d99965488683feddce
Parents: e06283e
Author: Justin Mclean <jm...@apache.org>
Authored: Mon Apr 29 09:10:58 2013 +1000
Committer: Justin Mclean <jm...@apache.org>
Committed: Mon Apr 29 09:10:58 2013 +1000

----------------------------------------------------------------------
 .../framework/src/mx/formatters/DateBase.as        |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/a5e7e152/frameworks/projects/framework/src/mx/formatters/DateBase.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/framework/src/mx/formatters/DateBase.as b/frameworks/projects/framework/src/mx/formatters/DateBase.as
index 50c9aeb..4c0d15a 100644
--- a/frameworks/projects/framework/src/mx/formatters/DateBase.as
+++ b/frameworks/projects/framework/src/mx/formatters/DateBase.as
@@ -578,7 +578,7 @@ public class DateBase
 				
 				if (key < 2 && mins == 0)
 					tzStr += setValue(hours, key);
-				else (key < 3)
+				else if (key < 3)
 					tzStr += setValue(hours, key) + ":" + setValue(mins, key);
 					
 				if (offset >= 0)