Skip to content

Commit

Permalink
Remove unnecessary keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Jun 23, 2024
1 parent 1364973 commit 1182f90
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ protected WrappedBloomFilter createEmptyFilter(final Shape shape) {
@Override
public BloomFilter copy() {
final BloomFilter result = new DefaultBloomFilterTest.SparseDefaultBloomFilter(shape);
result.merge(this.getWrapped());
result.merge(getWrapped());
return result;
}
};
Expand All @@ -49,7 +49,7 @@ public int characteristics() {
@Override
public BloomFilter copy() {
final BloomFilter result = new DefaultBloomFilterTest.SparseDefaultBloomFilter(shape);
result.merge(this.getWrapped());
result.merge(getWrapped());
return result;
}
};
Expand Down

0 comments on commit 1182f90

Please sign in to comment.