fix build. I think the compiler now catches this. __NoChangeEvent__ should not be dispatched. It is a special event name to tell the binding subsystem not to expect change events
Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/0423210e Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/0423210e Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/0423210e Branch: refs/heads/feature/mdl Commit: 0423210ebd985aed38b255bb2a36229f9e255d2d Parents: 72c1e1f Author: Alex Harui <[email protected]> Authored: Tue Nov 8 13:32:59 2016 -0800 Committer: Alex Harui <[email protected]> Committed: Tue Nov 8 13:32:59 2016 -0800 ---------------------------------------------------------------------- .../HTML/src/main/flex/org/apache/flex/core/Application.as | 2 -- 1 file changed, 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/0423210e/frameworks/projects/HTML/src/main/flex/org/apache/flex/core/Application.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/HTML/src/main/flex/org/apache/flex/core/Application.as b/frameworks/projects/HTML/src/main/flex/org/apache/flex/core/Application.as index bef9f3d..8883673 100644 --- a/frameworks/projects/HTML/src/main/flex/org/apache/flex/core/Application.as +++ b/frameworks/projects/HTML/src/main/flex/org/apache/flex/core/Application.as @@ -555,7 +555,6 @@ package org.apache.flex.core * @playerversion AIR 2.6 * @productversion FlexJS 0.0 */ - [Bindable("__NoChangeEvent__")] public function get initialView():IApplicationView { return _initialView; @@ -564,7 +563,6 @@ package org.apache.flex.core public function set initialView(value:IApplicationView):void { _initialView = value; - dispatchEvent(new org.apache.flex.events.Event("__NoChangeEvent__"); } COMPILE::SWF
