Skip to content

Commit

Permalink
Result doesn't extend EventDispatcher any more. It's been a long time…
Browse files Browse the repository at this point in the history
… since it needed to.
  • Loading branch information
Robert Penner committed Nov 7, 2010
1 parent 614702c commit af84f4d
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions asunit-4.0/src/asunit/framework/Result.as
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ package asunit.framework {

import asunit.errors.UsageError;

import flash.events.EventDispatcher;

/**
* A <code>Result</code> collects the results of executing
* a test case. It is an instance of the Collecting Parameter pattern.
Expand All @@ -13,7 +11,7 @@ package asunit.framework {
*
* @see Test
*/
public class Result extends EventDispatcher implements IResult {
public class Result implements IResult {

protected var _runCount:uint = 0;
protected var _runTime:Number;
Expand Down

0 comments on commit af84f4d

Please sign in to comment.