IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 16226


Ignore:
Timestamp:
Jan 24, 2008, 4:46:41 PM (18 years ago)
Author:
jhoblitt
Message:

change Nebulous::Client::find_objects() to return undef instead of [] if no objects are found

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Nebulous-Server/Changes

    r16224 r16226  
    11Revision history for Nebulous
     2
     30.07
     4    - change Nebulous::Client::find_objects() to return undef instead of [] if
     5      no objects are found
     6    - change neb-touch to use Nebulous::Client::find_objects() instead of
     7      ::find()
    28
    390.06 Thu Jan 24 16:10:46 HST 2008
  • trunk/Nebulous/Changes

    r16224 r16226  
    11Revision history for Nebulous
     2
     30.07
     4    - change Nebulous::Client::find_objects() to return undef instead of [] if
     5      no objects are found
     6    - change neb-touch to use Nebulous::Client::find_objects() instead of
     7      ::find()
    28
    390.06 Thu Jan 24 16:10:46 HST 2008
  • trunk/Nebulous/lib/Nebulous/Client.pm

    r13302 r16226  
    11# Copyright (c) 2004  Joshua Hoblitt
    22#
    3 # $Id: Client.pm,v 1.35 2007-05-08 02:27:42 jhoblitt Exp $
     3# $Id: Client.pm,v 1.36 2008-01-25 02:46:41 jhoblitt Exp $
    44
    55package Nebulous::Client;
     
    423423# behavior of this function is different then it's ::Server counter part
    424424
    425     return $keys;
     425    return length @$keys ? $keys : undef;
    426426}
    427427
Note: See TracChangeset for help on using the changeset viewer.