Remove comment. I could not find any divergence in the getResourceAsStream error handling.

This commit is contained in:
Andreas Schildbach 2014-08-06 18:40:07 +02:00 committed by Mike Hearn
parent fe91dc9110
commit 19b73600c8

View File

@ -77,7 +77,7 @@ public class MnemonicCode {
private static InputStream openDefaultWords() throws IOException {
InputStream stream = MnemonicCode.class.getResourceAsStream(BIP39_ENGLISH_RESOURCE_NAME);
if (stream == null)
throw new FileNotFoundException(BIP39_ENGLISH_RESOURCE_NAME); // Handle Dalvik vs ART vs JVM divergence.
throw new FileNotFoundException(BIP39_ENGLISH_RESOURCE_NAME);
return stream;
}