Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[common] Remove an unrequired explicit return. (Yeah, I'll teach the …
…optimizer about that some day soon...)
  • Loading branch information
jnthn committed Dec 4, 2010
1 parent f0d70f0 commit e2f7447
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/NQP/P6Objects.pm
Expand Up @@ -23,7 +23,7 @@ class Mu {
}

method isa($type) {
return self.HOW.isa(self, $type);
self.HOW.isa(self, $type)
}

method Bool() {
Expand Down

0 comments on commit e2f7447

Please sign in to comment.