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