You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucy.apache.org by ma...@apache.org on 2011/02/07 22:59:54 UTC

[lucy-commits] svn commit: r1068159 - /incubator/lucy/trunk/clownfish/lib/Clownfish/Type/Void.pm

Author: marvin
Date: Mon Feb  7 21:59:54 2011
New Revision: 1068159

URL: http://svn.apache.org/viewvc?rev=1068159&view=rev
Log:
Remove obsolete override of equals() in Clownfish::Type::Void.

Modified:
    incubator/lucy/trunk/clownfish/lib/Clownfish/Type/Void.pm

Modified: incubator/lucy/trunk/clownfish/lib/Clownfish/Type/Void.pm
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/clownfish/lib/Clownfish/Type/Void.pm?rev=1068159&r1=1068158&r2=1068159&view=diff
==============================================================================
--- incubator/lucy/trunk/clownfish/lib/Clownfish/Type/Void.pm (original)
+++ incubator/lucy/trunk/clownfish/lib/Clownfish/Type/Void.pm Mon Feb  7 21:59:54 2011
@@ -40,13 +40,6 @@ sub new {
     );
 }
 
-sub equals {
-    my ( $self, $other ) = @_;
-    return 0 unless blessed($other);
-    return 0 unless $other->isa(__PACKAGE__);
-    return 1;
-}
-
 1;
 
 __END__