removed unused utility function that was calling a (likely) deprecated view
authorerickson <erickson@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Fri, 7 May 2010 19:31:08 +0000 (19:31 +0000)
committererickson <erickson@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Fri, 7 May 2010 19:31:08 +0000 (19:31 +0000)
git-svn-id: svn://svn.open-ils.org/ILS/trunk@16407 dcc99617-32d9-48b4-a31d-7c20da2025e4

Open-ILS/src/perlmods/OpenILS/Application/AppUtils.pm

index b789f57..97f04b2 100644 (file)
@@ -940,17 +940,6 @@ sub fetch_open_circulation {
     return ($circ, $e->event);
 }
 
-sub fetch_all_open_circulation {
-       my( $self, $cid ) = @_;
-       my $evt;
-       $self->logmark;
-       my $circ = $self->cstorereq(
-               'open-ils.cstore.direct.action.open_circulation.search',
-               { target_copy => $cid, xact_finish => undef } );
-       $evt = OpenILS::Event->new('ACTION_CIRCULATION_NOT_FOUND') unless $circ;        
-       return ($circ, $evt);
-}
-
 my $copy_statuses;
 sub copy_status_from_name {
        my( $self, $name ) = @_;