From: Andy Grundman <andy@hybridized.org>
Date: Tue, 2 Aug 2005 00:46:17 +0000 (+0000)
Subject: Removed left over Dumper call
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=8db49b4ea9c73b93a12214ff109c11d07fb53c9f;p=dbsrgits%2FDBIx-Class-Historic.git

Removed left over Dumper call
---

diff --git a/lib/DBIx/Class/SQL/Abstract.pm b/lib/DBIx/Class/SQL/Abstract.pm
index 42657ac..8167a41 100644
--- a/lib/DBIx/Class/SQL/Abstract.pm
+++ b/lib/DBIx/Class/SQL/Abstract.pm
@@ -16,8 +16,6 @@ sub _cond_resolve {
 
   # If an arrayref, then we join each element
   if ($ref eq 'ARRAY') {
-    use Data::Dumper;
-    #$self->_debug( Dumper($cond) );
     # need to use while() so can shift() for arrays
     my $subjoin;
     while (my $el = shift @$cond) {