Repository: flex-typedefs
Updated Branches:
  refs/heads/develop 27a4bf52d -> 506e46762


Revert "Changed properties to getters"

This reverts commit 27a4bf52d9311724e49717b303eee0ef081e3ba8.


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

Branch: refs/heads/develop
Commit: 506e4676272f753a10a7ef4323c47da6d3f90f4c
Parents: 27a4bf5
Author: Harbs <ha...@in-tools.com>
Authored: Mon Jul 24 12:49:59 2017 +0300
Committer: Harbs <ha...@in-tools.com>
Committed: Mon Jul 24 12:49:59 2017 +0300

----------------------------------------------------------------------
 GCL/src/main/flex/goog/events/Event.as | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-typedefs/blob/506e4676/GCL/src/main/flex/goog/events/Event.as
----------------------------------------------------------------------
diff --git a/GCL/src/main/flex/goog/events/Event.as 
b/GCL/src/main/flex/goog/events/Event.as
index bccec28..d8064ce 100644
--- a/GCL/src/main/flex/goog/events/Event.as
+++ b/GCL/src/main/flex/goog/events/Event.as
@@ -35,10 +35,8 @@ public class Event {
     }
 
     public var type:String;
-    public function get target():Object{return null;}
-    public function set target(value:Object):void{}
-    public function get currentTarget():Object{return null;}
-    public function set currentTarget(value:Object):void{}
+    public var target:Object;
+    public var currentTarget:Object;
     public var defaultPrevented:Boolean;
 
     public function stopPropagation():void {}

Reply via email to