mirror of
https://github.com/google/nomulus
synced 2026-08-22 07:06:10 +00:00
Capitalize the Bloom in Bloom filter in comments
(Because it's someone's name.) ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=150353742
This commit is contained in:
@@ -67,7 +67,7 @@ public class BloomFilterOfStringTranslatorFactory
|
||||
Funnel<String> castedFunnel = (Funnel<String>) (Funnel<?>) unencodedCharsFunnel();
|
||||
return BloomFilter.readFrom(new ByteArrayInputStream(value.getBytes()), castedFunnel);
|
||||
} catch (IOException e) {
|
||||
throw new IllegalStateException("Error loading bloom filter data", e);
|
||||
throw new IllegalStateException("Error loading Bloom filter data", e);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -81,7 +81,7 @@ public class BloomFilterOfStringTranslatorFactory
|
||||
try {
|
||||
value.writeTo(bos);
|
||||
} catch (IOException e) {
|
||||
throw new IllegalStateException("Error saving bloom filter data", e);
|
||||
throw new IllegalStateException("Error saving Bloom filter data", e);
|
||||
}
|
||||
return new Blob(bos.toByteArray());
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user