erikandersen-pariveda / fluint

Automatically exported from code.google.com/p/fluint
0 stars 0 forks source link

SequenceEventDispatcher Constructor Should Take IEventDispatcher as first parameter #30

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
The SequenceEventDispatcher constructor takes an EventDispatcher as an
argument but stores it in an IEventDispatcher. The method should take an
IEventDispatcher as an argument.

This:
public function SequenceEventDispatcher( target:EventDispatcher,
eventToBroadcast:Event ) {...}

Should could be This:
public function SequenceEventDispatcher( target:IEventDispatcher,
eventToBroadcast:Event ) {...}

Original issue reported on code.google.com by adamben...@gmail.com on 29 Jan 2009 at 2:01