Ignore:
Timestamp:
2016-12-12T15:10:24+13:00 (7 years ago)
Author:
davidb
Message:

And some more tweaking

File:
1 edited

Legend:

Unmodified
Added
Removed
  • other-projects/hathitrust/wcsa/extracted-features-solr/trunk/solr-ingest/src/main/java/com/google/common/hash/BloomFilterAdvancedStrategies.java

    r31206 r31207  
    4545    @Override
    4646    public <T> boolean put(
    47         T object, Funnel<? super T> funnel, int numHashFunctions, BloomFilterStrategies.BitArray bits) {
     47        T object, Funnel<? super T> funnel, int numHashFunctions, BloomFilterAdvancedStrategies.BitArray bits) {
    4848      long bitSize = bits.bitSize();
    4949      long hash64 = Hashing.murmur3_128().hashObject(object, funnel).asLong();
     
    6565    @Override
    6666    public <T> boolean mightContain(
    67         T object, Funnel<? super T> funnel, int numHashFunctions, BloomFilterStrategies.BitArray bits) {
     67        T object, Funnel<? super T> funnel, int numHashFunctions, BloomFilterAdvancedStrategies.BitArray bits) {
    6868      long bitSize = bits.bitSize();
    6969      long hash64 = Hashing.murmur3_128().hashObject(object, funnel).asLong();
     
    9393    @Override
    9494    public <T> boolean put(
    95         T object, Funnel<? super T> funnel, int numHashFunctions, BloomFilterStrategies.BitArray bits) {
     95        T object, Funnel<? super T> funnel, int numHashFunctions, BloomFilterAdvancedStrategies.BitArray bits) {
    9696      long bitSize = bits.bitSize();
    9797      byte[] bytes = Hashing.murmur3_128().hashObject(object, funnel).getBytesInternal();
     
    111111    @Override
    112112    public <T> boolean mightContain(
    113         T object, Funnel<? super T> funnel, int numHashFunctions, BloomFilterStrategies.BitArray bits) {
     113        T object, Funnel<? super T> funnel, int numHashFunctions, BloomFilterAdvancedStrategies.BitArray bits) {
    114114      long bitSize = bits.bitSize();
    115115      byte[] bytes = Hashing.murmur3_128().hashObject(object, funnel).getBytesInternal();
Note: See TracChangeset for help on using the changeset viewer.