Skip to content

Commit

Permalink
No empty parens on method calls. Also, missed a couple of method calls.
Browse files Browse the repository at this point in the history
  • Loading branch information
davorg committed Mar 23, 2016
1 parent 4bcea5f commit 4b72a67
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lib/QMail/QueueHandler.pm
Expand Up @@ -157,11 +157,11 @@ sub run {

# If we have planned deletions, then do them.
if ( $self->to_delete_count ) {
$self->trash_msgs();
$self->trash_msgs;
}

# If we stopped qmail, then restart it
$self->start_qmail();
$self->start_qmail;
}

# ##### SERVICE FUNCTIONS #####
Expand Down Expand Up @@ -267,7 +267,7 @@ sub _build_msglist {
sub parse_args {
my $self = shift;

@ARGV or usage();
@ARGV or $self->usage;

my %opt;

Expand Down Expand Up @@ -606,7 +606,7 @@ sub list_msg {
} ## end if ($summary == 0)
} ## end foreach my $msg (@msglist)

$self->stats();
$self->stats;
return;
}

Expand Down Expand Up @@ -964,7 +964,7 @@ sub flag_remote {
return;
}

flag_msgs();
$self->flag_msgs;

return;
}
Expand Down

0 comments on commit 4b72a67

Please sign in to comment.