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:
mountford 2017-03-16 12:32:11 -07:00 committed by Ben McIlwain
parent bd6a2d02dd
commit ff70494bd8
4 changed files with 12 additions and 12 deletions

View file

@ -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());
}