Skip to content

Commit

Permalink
Removed explicit 'return' statements from accessor methods in Plumage…
Browse files Browse the repository at this point in the history
…::Command since they're redundant.
  • Loading branch information
soh-cah-toa committed Oct 17, 2011
1 parent d979cfb commit 9dd9341
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/lib/Plumage/Command.nqp
Expand Up @@ -54,9 +54,9 @@ method new(:$action, :$args, :$usage, :$help) {
}

# Accessors
method action() { return $!action }
method args() { return $!args }
method usage() { return $!usage }
method help() { return $!help }
method action() { $!action }
method args() { $!args }
method usage() { $!usage }
method help() { $!help }

# vim: ft=perl6

0 comments on commit 9dd9341

Please sign in to comment.