Revert "MXMLC then saw these as ambiguous, but Falcon didn't?" This reverts commit 07d30c0a8613e0cc37c9ae194090365ca837d566.
We don't need this change or the change before. Falcon needs a different set of default imports. Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/e8a1d842 Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/e8a1d842 Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/e8a1d842 Branch: refs/heads/release4.11.0 Commit: e8a1d8422f92c9145bc604cdf01bbb2ad4ecdfee Parents: 5d2dc3f Author: Alex Harui <[email protected]> Authored: Tue Sep 3 12:45:05 2013 -0700 Committer: Alex Harui <[email protected]> Committed: Thu Oct 10 23:18:36 2013 -0700 ---------------------------------------------------------------------- .../basicTests/graphics/scripts/GraphicsTagsTestScript.mxml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/e8a1d842/frameworks/tests/basicTests/graphics/scripts/GraphicsTagsTestScript.mxml ---------------------------------------------------------------------- diff --git a/frameworks/tests/basicTests/graphics/scripts/GraphicsTagsTestScript.mxml b/frameworks/tests/basicTests/graphics/scripts/GraphicsTagsTestScript.mxml index c9943b5..b64bf68 100644 --- a/frameworks/tests/basicTests/graphics/scripts/GraphicsTagsTestScript.mxml +++ b/frameworks/tests/basicTests/graphics/scripts/GraphicsTagsTestScript.mxml @@ -72,11 +72,11 @@ public var stroke10Alpha:SolidColorStroke = new SolidColorStroke(0x000000, 10, 0.4); [Bindable] - public var bevelFilter:spark.filters.BevelFilter = new spark.filters.BevelFilter(); + public var bevelFilter:BevelFilter = new BevelFilter(); [Bindable] - public var blurFilter:spark.filters.BlurFilter = new spark.filters.BlurFilter(); + public var blurFilter:BlurFilter = new BlurFilter(); [Bindable] - public var dropShadowFilter:spark.filters.DropShadowFilter = new spark.filters.DropShadowFilter(0xFF00FF); + public var dropShadowFilter:DropShadowFilter = new DropShadowFilter(0xFF00FF); [Bindable] public var linearGrad:LinearGradient = new LinearGradient();
