3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-02-13 02:35:52 +00:00

Remove redundant type information.

This commit is contained in:
Carsten Otto 2015-07-04 18:39:42 +02:00 committed by Andreas Schildbach
parent fb75bb4c63
commit 213efd53ab

View File

@ -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. */