rafalszemraj / fabrication

Automatically exported from code.google.com/p/fabrication
2 stars 1 forks source link

listNotificationInterests and initializeReactions fails in Flex 4 #7

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1.
2.
3.

What is the expected output? What do you see instead?

What version of the product are you using? On what operating system?

Please provide any additional information below.
var respondToMethodsCount:int = respondToMethods.children().length();
results in the incorrect length.
Changing line 292 to...
var respondToMethodsCount:int = respondToMethods.length();
corrects the failure and in initializeReactions()
var reactionMethodsCount:int = reactionMethods.children().length();
to...
var reactionMethodsCount:int = reactionMethods.length();

Original issue reported on code.google.com by gregoryb...@gmail.com on 1 Aug 2009 at 12:05

GoogleCodeExporter commented 9 years ago
This was fixed in r161 with the patch that Simon White submitted.
http://code.google.com/p/fabrication/source/detail?r=161. Use ant swc target to 
build 
an updated swc.

Original comment by darshan....@gmail.com on 1 Aug 2009 at 4:28

GoogleCodeExporter commented 9 years ago
Thank you,
I should have checked the latest revision.
Thank you for the great utility.  It makes PureMVC/Pipes a joy to use.
As you say, peace.
Greg

Original comment by gregoryb...@gmail.com on 2 Aug 2009 at 11:32