mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2025-02-23 14:40:40 +01:00
Remove redundant type information.
This commit is contained in:
parent
fb75bb4c63
commit
213efd53ab
1 changed files with 1 additions and 1 deletions
|
@ -619,7 +619,7 @@ public class DeterministicKeyChain implements EncryptableKeyChain {
|
|||
|
||||
/** Returns the deterministic key for the given absolute path in the hierarchy. */
|
||||
protected DeterministicKey getKeyByPath(ChildNumber... path) {
|
||||
return getKeyByPath(ImmutableList.<ChildNumber>copyOf(path));
|
||||
return getKeyByPath(ImmutableList.copyOf(path));
|
||||
}
|
||||
|
||||
/** Returns the deterministic key for the given absolute path in the hierarchy. */
|
||||
|
|
Loading…
Add table
Reference in a new issue