From: Jason Stephenson Date: Sat, 27 Sep 2014 12:37:29 +0000 (-0400) Subject: Fix a little something caught by perl -c. X-Git-Url: https://git.evergreen-ils.org/?p=working%2FNCIPServer.git;a=commitdiff_plain;h=d24232a647fc7e147447ff3c233c5704a8053645 Fix a little something caught by perl -c. Signed-off-by: Jason Stephenson --- diff --git a/lib/NCIP/ILS.pm b/lib/NCIP/ILS.pm index df63d82..ef64d93 100644 --- a/lib/NCIP/ILS.pm +++ b/lib/NCIP/ILS.pm @@ -459,7 +459,7 @@ sub find_bibliographic_ids { } } - return (wantarray) @ids : [@ids]; + return (wantarray) ? @ids : [@ids]; } 1;