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/23 07:11:32 UTC

git commit: [flex-sdk] - Removed extra 'i' that crept into code

Updated Branches:
  refs/heads/develop eb448c331 -> 715f587be


Removed extra 'i' that crept into code


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

Branch: refs/heads/develop
Commit: 715f587beb7f94e846729279427d324da4005743
Parents: eb448c3
Author: Justin Mclean <jm...@apache.org>
Authored: Tue Apr 23 15:11:16 2013 +1000
Committer: Justin Mclean <jm...@apache.org>
Committed: Tue Apr 23 15:11:16 2013 +1000

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


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/715f587b/frameworks/projects/framework/src/mx/formatters/DateFormatter.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/framework/src/mx/formatters/DateFormatter.as b/frameworks/projects/framework/src/mx/formatters/DateFormatter.as
index 9303356..652e80a 100644
--- a/frameworks/projects/framework/src/mx/formatters/DateFormatter.as
+++ b/frameworks/projects/framework/src/mx/formatters/DateFormatter.as
@@ -279,7 +279,7 @@ public class DateFormatter extends Formatter
                 {
 					// FIXME assumes month come before day ie US style
 					// dates MM/DD/YYYY or year first dates YYYY/MM/DD
-i					if (mon < 0)
+					if (mon < 0)
                         mon = (num - 1);
 					else if (day < 0)
 						day = num;