first round of Perl::Critic cleanups. Do not use return undef, use a bare return instead

This commit is contained in:
Colin Kuskie 2007-12-05 00:30:43 +00:00
parent 75041656ee
commit 96178fd70c
92 changed files with 209 additions and 209 deletions

View file

@ -304,7 +304,7 @@ sub createAccountSave {
);
}
return undef;
return;
}
#-------------------------------------------------------------------
@ -364,7 +364,7 @@ sub deactivateAccountConfirm {
#});
$self->logout;
return undef;
return;
}
#-------------------------------------------------------------------
@ -680,7 +680,7 @@ sub login {
$self->session->errorHandler->warn($error) if $error;
}
return undef;
return;
}
#-------------------------------------------------------------------
@ -705,7 +705,7 @@ sub logout {
$self->session->errorHandler->warn($error) if $error;
}
return undef;
return;
}
#-------------------------------------------------------------------