Repository: flex-asjs Updated Branches: refs/heads/develop 3f8b06fc9 -> a8afc4eb3
- ProductModel do not need extend EventDispatcher in order to working for ListExample Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/a8afc4eb Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/a8afc4eb Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/a8afc4eb Branch: refs/heads/develop Commit: a8afc4eb324167d7ba8c5e4bea603c238bd41124 Parents: 3f8b06f Author: piotrz <[email protected]> Authored: Sat Feb 18 15:10:58 2017 +0100 Committer: piotrz <[email protected]> Committed: Sat Feb 18 15:10:58 2017 +0100 ---------------------------------------------------------------------- .../flexjs/ListExample/src/main/flex/models/ProductsModel.as | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/a8afc4eb/examples/flexjs/ListExample/src/main/flex/models/ProductsModel.as ---------------------------------------------------------------------- diff --git a/examples/flexjs/ListExample/src/main/flex/models/ProductsModel.as b/examples/flexjs/ListExample/src/main/flex/models/ProductsModel.as index 17ad68c..d1430b2 100644 --- a/examples/flexjs/ListExample/src/main/flex/models/ProductsModel.as +++ b/examples/flexjs/ListExample/src/main/flex/models/ProductsModel.as @@ -18,14 +18,8 @@ //////////////////////////////////////////////////////////////////////////////// package models { - import org.apache.flex.events.EventDispatcher; - - public class ProductsModel extends EventDispatcher + public class ProductsModel { - public function ProductsModel() - { - } - /** * Used for the GenericList example. */
