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

Next added in part of new Guava code

Location:
other-projects/hathitrust/wcsa/extracted-features-solr/trunk/solr-ingest/src/main/java/com/google/common/hash
Files:
1 added
1 edited

Legend:

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

    r31204 r31205  
    318318  public static <T> BloomFilterAdvanced<T> create(
    319319      Funnel<? super T> funnel, long expectedInsertions, double fpp) {
    320     return create(funnel, expectedInsertions, fpp, BloomFilterStrategies.MURMUR128_MITZ_64);
     320    return create(funnel, expectedInsertions, fpp, BloomFilterAdvancedStrategies.MURMUR128_MITZ_64);
    321321  }
    322322
     
    511511      dataLength = din.readInt();
    512512
    513       BloomFilter.Strategy strategy = BloomFilterStrategies.values()[strategyOrdinal];
     513      BloomFilter.Strategy strategy = BloomFilterAdvancedStrategies.values()[strategyOrdinal];
    514514      long[] data = new long[dataLength];
    515515      for (int i = 0; i < data.length; i++) {
Note: See TracChangeset for help on using the changeset viewer.