This is an automated email from the ASF dual-hosted git repository.
carlosrovira pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git
The following commit(s) were added to refs/heads/develop by this push:
new 7d7b6af todomvc-crux: Dispatcher is not needed in this case
7d7b6af is described below
commit 7d7b6af0bc591e21e0e2682fc8236e7531d22abe
Author: Carlos Rovira <[email protected]>
AuthorDate: Wed Feb 12 20:30:04 2020 +0100
todomvc-crux: Dispatcher is not needed in this case
---
.../todomvc/src/main/royale/jewel/todomvc/models/TodoModel.as | 8 --------
1 file changed, 8 deletions(-)
diff --git
a/examples/crux/todomvc/src/main/royale/jewel/todomvc/models/TodoModel.as
b/examples/crux/todomvc/src/main/royale/jewel/todomvc/models/TodoModel.as
index c3ba82f..83e69dc 100644
--- a/examples/crux/todomvc/src/main/royale/jewel/todomvc/models/TodoModel.as
+++ b/examples/crux/todomvc/src/main/royale/jewel/todomvc/models/TodoModel.as
@@ -23,7 +23,6 @@ package jewel.todomvc.models
import org.apache.royale.collections.ArrayList;
import org.apache.royale.collections.ArrayListView;
import org.apache.royale.events.EventDispatcher;
- import org.apache.royale.events.IEventDispatcher;
import org.apache.royale.storage.AMFStorage;
[Bindable]
@@ -40,13 +39,6 @@ package jewel.todomvc.models
public static const ACTIVE_FILTER:String = "Active";
public static const COMPLETED_FILTER:String = "Completed";
- /**
- * The [Dispatcher] metadata tag instructs Crux to inject an
event dispatcher.
- * Event's dispatched via this dispatcher can trigger event
mediators.
- */
- [Dispaqtcher]
- public var dispatcher : IEventDispatcher;
-
/**
* Retrieves the array ot items
*/