removed some unecessary atomic handling
authorerickson <erickson@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Mon, 5 Feb 2007 18:59:04 +0000 (18:59 +0000)
committererickson <erickson@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Mon, 5 Feb 2007 18:59:04 +0000 (18:59 +0000)
git-svn-id: svn://svn.open-ils.org/ILS/trunk@6877 dcc99617-32d9-48b4-a31d-7c20da2025e4

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

index bf77c7d..6c79a58 100644 (file)
@@ -40,6 +40,7 @@ __PACKAGE__->register_method(
        api_name  => 'open-ils.collections.users_of_interest.retrieve',
        api_level => 1,
        argc      => 4,
+    stream    => 1,
        signature => { 
                desc     => q/
                        Returns an array of user information objects that the system 
@@ -92,17 +93,9 @@ __PACKAGE__->register_method(
 );
 
 
-__PACKAGE__->register_method(
-       method    => 'users_of_interest',
-       api_name  => 'open-ils.collections.users_of_interest.retrieve.atomic',
-   stream    => 1,
-);
-
 sub users_of_interest {
        my( $self, $conn, $auth, $age, $fine_level, $location ) = @_;
 
-   my $atomic = $self->api_name =~ /atomic/;
-
        return OpenILS::Event->new('BAD_PARAMS') 
                unless ($auth and $age and $fine_level and $location);