Remove unnecessary keyword

This commit is contained in:
Gary Gregory 2024-06-23 14:21:46 -04:00
parent 640b5e1c61
commit 0e3f2d3de5
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ public class LayeredBloomFilterTest extends AbstractBloomFilterTest<LayeredBloom
@Override
public TimestampedBloomFilter copy() {
return new TimestampedBloomFilter(this.getWrapped().copy(), timestamp);
return new TimestampedBloomFilter(getWrapped().copy(), timestamp);
}
public long getTimestamp() {