FLEX-33307: fix another couple of 'variable definition duplicates function parameter' warnings.
Signed-off-by: Erik de Bruin <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/633f5253 Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/633f5253 Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/633f5253 Branch: refs/heads/develop Commit: 633f52537bc5be3d327f61275af4e366b7d98eb8 Parents: a12e7f4 Author: Erik de Bruin <[email protected]> Authored: Mon Sep 23 15:33:52 2013 +0200 Committer: Erik de Bruin <[email protected]> Committed: Mon Sep 23 15:33:52 2013 +0200 ---------------------------------------------------------------------- .../spark/src/spark/components/gridClasses/DataGridEditor.as | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/633f5253/frameworks/projects/spark/src/spark/components/gridClasses/DataGridEditor.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/spark/src/spark/components/gridClasses/DataGridEditor.as b/frameworks/projects/spark/src/spark/components/gridClasses/DataGridEditor.as index 33ca0cb..c727988 100644 --- a/frameworks/projects/spark/src/spark/components/gridClasses/DataGridEditor.as +++ b/frameworks/projects/spark/src/spark/components/gridClasses/DataGridEditor.as @@ -1053,8 +1053,8 @@ public class DataGridEditor // increment is -1 if we are moving backward and 1 if moving // forward. const increment:int = backward ? -1 : 1; - var rowIndex:int = rowIndex; - var columnIndex:int = columnIndex; + //var rowIndex:int = rowIndex; + //var columnIndex:int = columnIndex; do { var nextColumn:int = columnIndex + increment; if (nextColumn >= 0 && nextColumn < dataGrid.columns.length)
