You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ah...@apache.org on 2015/12/17 08:55:00 UTC

[50/55] [abbrv] git commit: [flex-asjs] [refs/heads/develop] - fix error

fix error


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

Branch: refs/heads/develop
Commit: cb0d947f3476e4f393543c380a7c36cb75f6c3ee
Parents: 653c047
Author: Alex Harui <ah...@apache.org>
Authored: Wed Dec 16 14:49:33 2015 -0800
Committer: Alex Harui <ah...@apache.org>
Committed: Wed Dec 16 14:49:33 2015 -0800

----------------------------------------------------------------------
 .../as/src/org/apache/flex/core/graphics/LinearGradient.as         | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/cb0d947f/frameworks/projects/Graphics/as/src/org/apache/flex/core/graphics/LinearGradient.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/Graphics/as/src/org/apache/flex/core/graphics/LinearGradient.as b/frameworks/projects/Graphics/as/src/org/apache/flex/core/graphics/LinearGradient.as
index 58fd116..c36a37b 100644
--- a/frameworks/projects/Graphics/as/src/org/apache/flex/core/graphics/LinearGradient.as
+++ b/frameworks/projects/Graphics/as/src/org/apache/flex/core/graphics/LinearGradient.as
@@ -90,7 +90,7 @@ package org.apache.flex.core.graphics
             }
             
             //Process gradient entries and create a stop for each entry
-            var entries:Array = entries;
+            var entries:Array = this.entries;
             for (var i:int = 0; i < entries.length; i++)
             {
                 var gradientEntry:GradientEntry = entries[i];