mirror of
https://github.com/google/nomulus.git
synced 2025-07-05 10:43:26 +02: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:
parent
bd6a2d02dd
commit
ff70494bd8
4 changed files with 12 additions and 12 deletions
|
@ -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());
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue