LP1923976: Remove some dead code
authorJason Stephenson <jason@sigio.com>
Fri, 9 Apr 2021 17:42:42 +0000 (13:42 -0400)
committerMike Rylander <mrylander@gmail.com>
Fri, 13 Aug 2021 22:39:20 +0000 (18:39 -0400)
Remove a block of commented code that was turned up while working on
this issue.  This is in its own commit to make it easier to revert, if
necessary.

Signed-off-by: Jason Stephenson <jason@sigio.com>
Signed-off-by: Michele Morgan <mmorgan@noblenet.org>
Signed-off-by: Mike Rylander <mrylander@gmail.com>
Open-ILS/src/perlmods/lib/OpenILS/Application/Storage/CDBI.pm

index 1a43510..7f3b9ae 100644 (file)
@@ -222,13 +222,6 @@ sub remote_update {
     $log->debug("CDBI->remote_update: \$search is $search (".ref($search)." : ".join(',',map{"$_ => $$search{$_}"}keys(%$search)).")",DEBUG);
     $log->debug("CDBI->remote_update: \$arg is $arg (".ref($arg)." : ".join(',',map{"$_ => $$arg{$_}"}keys(%$arg)).")",DEBUG);
 
-#   my @objs = $self->search_where($search);
-#   throw OpenSRF::EX::WARN ("No objects found for remote_update.  Perhaps you meant to use merge?")
-#       if (@objs == 0);
-
-#   $_->update($arg) for (@objs);
-#   return scalar(@objs);
-
     my @finds = sort keys %$search;
     my @sets = sort keys %$arg;