From 213efd53ab16d4e8e1b260b23b4af316c37c7cf2 Mon Sep 17 00:00:00 2001 From: Carsten Otto Date: Sat, 4 Jul 2015 18:39:42 +0200 Subject: [PATCH] Remove redundant type information. --- .../main/java/org/bitcoinj/wallet/DeterministicKeyChain.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/org/bitcoinj/wallet/DeterministicKeyChain.java b/core/src/main/java/org/bitcoinj/wallet/DeterministicKeyChain.java index 5301779d..e6c1a7f5 100644 --- a/core/src/main/java/org/bitcoinj/wallet/DeterministicKeyChain.java +++ b/core/src/main/java/org/bitcoinj/wallet/DeterministicKeyChain.java @@ -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.copyOf(path)); + return getKeyByPath(ImmutableList.copyOf(path)); } /** Returns the deterministic key for the given absolute path in the hierarchy. */