Skip to content
This repository has been archived by the owner on Feb 3, 2021. It is now read-only.

Commit

Permalink
Remove redundant pirop signatures. PAST::Compiler is smart enough to …
Browse files Browse the repository at this point in the history
…handle it as is.
  • Loading branch information
bacek committed Jan 9, 2011
1 parent b812ff7 commit cb33a76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/setting/ResizablePMCArray.pm
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ module ResizablePMCArray {
=end item

method delete($pos) {
pir::delete__vQi(self, $pos);
pir::delete(self, $pos);
}

=begin item exists
Return true if item exists at C<$pos>
=end item

method exists($pos) {
pir::exists__IQi(self, $pos);
pir::exists(self, $pos);
}

=begin item join
Expand Down

0 comments on commit cb33a76

Please sign in to comment.