diff --git a/src/hex/unittest/notifier/ConsoleNotifier.hx b/src/hex/unittest/notifier/ConsoleNotifier.hx index 388f17c..66c03cf 100644 --- a/src/hex/unittest/notifier/ConsoleNotifier.hx +++ b/src/hex/unittest/notifier/ConsoleNotifier.hx @@ -12,7 +12,6 @@ import hex.unittest.event.ITestClassResultListener; */ class ConsoleNotifier implements ITestClassResultListener { - var _trace : Dynamic; var _tabs : String; var _errorBubbling : Bool; @@ -21,18 +20,11 @@ class ConsoleNotifier implements ITestClassResultListener public function new( errorBubbling : Bool = false ) { this._errorBubbling = errorBubbling; - #if js - this._trace = untyped Reflect.field( js.Boot, "__trace" ); - #end } function _log( message : String ) : Void { - #if js - Reflect.callMethod( untyped js.Boot, this._trace, [ this._tabs + message] ); - #else _TRACE(this._tabs + message); - #end } function _addTab() : Void