mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2025-01-19 05:33:44 +01:00
Remove comment. I could not find any divergence in the getResourceAsStream error handling.
This commit is contained in:
parent
fe91dc9110
commit
19b73600c8
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user