[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Omaha.pm] short is good



laugh... caught myself changing code to this

 

   my $response;

   unless ( $response = $self->send() ) {

     return 0;

   }

   return $response;

 

this is much better:

 

   return $self->send();

 

:)

 

j