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 21c2cdf set EventDispatcher toString again using [object Object]
string
21c2cdf is described below
commit 21c2cdfcfb4599b0bd2c111b7bbedad3b388757f
Author: Carlos Rovira <[email protected]>
AuthorDate: Tue Oct 15 18:26:29 2019 +0200
set EventDispatcher toString again using [object Object] string
---
.../Core/src/main/royale/org/apache/royale/events/EventDispatcher.as | 5 +++++
1 file changed, 5 insertions(+)
diff --git
a/frameworks/projects/Core/src/main/royale/org/apache/royale/events/EventDispatcher.as
b/frameworks/projects/Core/src/main/royale/org/apache/royale/events/EventDispatcher.as
index 360ed1f..b981c4e 100644
---
a/frameworks/projects/Core/src/main/royale/org/apache/royale/events/EventDispatcher.as
+++
b/frameworks/projects/Core/src/main/royale/org/apache/royale/events/EventDispatcher.as
@@ -99,5 +99,10 @@ package org.apache.royale.events
}
return false;
}
+
+ public function toString():String
+ {
+ return "[object Object]";
+ }
}
}