options is not actually used
authorerickson <erickson@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Thu, 25 Mar 2010 19:41:03 +0000 (19:41 +0000)
committererickson <erickson@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Thu, 25 Mar 2010 19:41:03 +0000 (19:41 +0000)
git-svn-id: svn://svn.open-ils.org/ILS/trunk@15988 dcc99617-32d9-48b4-a31d-7c20da2025e4

Open-ILS/src/perlmods/OpenILS/Application/Circ/Holds.pm

index 2b37e3a..84616be 100644 (file)
@@ -355,12 +355,11 @@ __PACKAGE__->register_method(
 
 
 sub retrieve_holds {
-       my($self, $client, $auth, $user_id, $options) = @_;
+    my ($self, $client, $auth, $user_id) = @_;
 
     my $e = new_editor(authtoken=>$auth);
     return $e->event unless $e->checkauth;
     $user_id = $e->requestor->id unless defined $user_id;
-    $options ||= {};
 
     unless($user_id == $e->requestor->id) {
         my $user = $e->retrieve_actor_user($user_id) or return $e->event;