Skip to content

Commit

Permalink
Merge branch 'cj/maint-gitpm-fix-maybe-self'
Browse files Browse the repository at this point in the history
* cj/maint-gitpm-fix-maybe-self:
  Git.pm: do not break inheritance
  • Loading branch information
gitster committed Nov 3, 2008
2 parents 6a509a6 + d8b24b9 commit bfd59c4
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions perl/Git.pm
Original file line number Diff line number Diff line change
Expand Up @@ -1203,8 +1203,7 @@ either version 2, or (at your option) any later version.
# the method was called upon an instance and (undef, @args) if
# it was called directly.
sub _maybe_self {
# This breaks inheritance. Oh well.
ref $_[0] eq 'Git' ? @_ : (undef, @_);
UNIVERSAL::isa($_[0], 'Git') ? @_ : (undef, @_);
}

# Check if the command id is something reasonable.
Expand Down

0 comments on commit bfd59c4

Please sign in to comment.