[open-ils-commits] r16407 - trunk/Open-ILS/src/perlmods/OpenILS/Application (erickson)
svn at svn.open-ils.org
svn at svn.open-ils.org
Fri May 7 15:31:12 EDT 2010
Author: erickson
Date: 2010-05-07 15:31:08 -0400 (Fri, 07 May 2010)
New Revision: 16407
Modified:
trunk/Open-ILS/src/perlmods/OpenILS/Application/AppUtils.pm
Log:
removed unused utility function that was calling a (likely) deprecated view
Modified: trunk/Open-ILS/src/perlmods/OpenILS/Application/AppUtils.pm
===================================================================
--- trunk/Open-ILS/src/perlmods/OpenILS/Application/AppUtils.pm 2010-05-07 19:04:56 UTC (rev 16406)
+++ trunk/Open-ILS/src/perlmods/OpenILS/Application/AppUtils.pm 2010-05-07 19:31:08 UTC (rev 16407)
@@ -940,17 +940,6 @@
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 ) = @_;
More information about the open-ils-commits
mailing list