Author: marvin
Date: Sun Oct 31 05:21:36 2010
New Revision: 1029247

URL: http://svn.apache.org/viewvc?rev=1029247&view=rev
Log:
Fix an incorrect parcel assignment.

Modified:
    incubator/lucy/trunk/clownfish/lib/Clownfish/Dumpable.pm

Modified: incubator/lucy/trunk/clownfish/lib/Clownfish/Dumpable.pm
URL: 
http://svn.apache.org/viewvc/incubator/lucy/trunk/clownfish/lib/Clownfish/Dumpable.pm?rev=1029247&r1=1029246&r2=1029247&view=diff
==============================================================================
--- incubator/lucy/trunk/clownfish/lib/Clownfish/Dumpable.pm (original)
+++ incubator/lucy/trunk/clownfish/lib/Clownfish/Dumpable.pm Sun Oct 31 
05:21:36 2010
@@ -54,7 +54,7 @@ sub _make_method_obj {
         incremented => 1,
         specifier   => 'Obj',
         indirection => 1,
-        parcel      => $class->get_parcel,
+        parcel      => 'KinoSearch',
     );
     my $self_type = Clownfish::Type::Object->new(
         specifier   => $class->get_struct_sym,
@@ -75,7 +75,7 @@ sub _make_method_obj {
         my $dump_type = Clownfish::Type::Object->new(
             specifier   => 'Obj',
             indirection => 1,
-            parcel      => $class->get_parcel,
+            parcel      => 'KinoSearch',
         );
         my $dump_var = Clownfish::Variable->new(
             type      => $dump_type,


Reply via email to