Author: leo
Date: Tue Jan 31 05:18:41 2006
New Revision: 11388

Modified:
   trunk/lib/Parrot/Configure/Data.pm
Log:
[perl #38260] [BUG][PATCH] Parrot::Config contains invalid info 

I have a partial solution.  There was a bug in
Parrot::Configure::Data->add which caused it to always include a
stringified copy of self for every usage of add.  This leads to a
large number of garbage hashref strings with even larger numbers of
delimiter seperated delimiter strings.

This effects lib/Parrot/Configure/Data and t/configure/data.t

Courtesy of Norman Nunley <[EMAIL PROTECTED]>
--
dummy ci for r11387 - sorry for the bad log msg


Modified: trunk/lib/Parrot/Configure/Data.pm
==============================================================================
--- trunk/lib/Parrot/Configure/Data.pm  (original)
+++ trunk/lib/Parrot/Configure/Data.pm  Tue Jan 31 05:18:41 2006
@@ -81,7 +81,6 @@ sub new
     };
 
     bless $self, ref $class || $class;
-
     return $self;
 }
 

Reply via email to