JavaDoc: Remove unnecessary {@inheritDoc}.

This commit is contained in:
Andreas Schildbach
2018-03-11 15:56:30 +01:00
parent c1e85fccaf
commit dffc060edf
4 changed files with 0 additions and 13 deletions

View File

@@ -316,7 +316,6 @@ public class DeterministicKey extends ECKey {
return super.isPubKeyOnly() && (parent == null || parent.isPubKeyOnly());
}
/** {@inheritDoc} */
@Override
public boolean hasPrivKey() {
return findParentWithPrivKey() != null;

View File

@@ -436,9 +436,6 @@ public class PaymentChannelClient implements IPaymentChannelClient {
conn.channelOpen(wasInitiated);
}
/**
* {@inheritDoc}
*/
@Override
public void receiveMessage(Protos.TwoWayChannelMessage msg) throws InsufficientMoneyException {
lock.lock();

View File

@@ -30,7 +30,6 @@ import static com.google.common.base.Preconditions.checkNotNull;
public class BaseTaggableObject implements TaggableObject {
@Nullable protected Map<String, ByteString> tags;
/** {@inheritDoc} */
@Override
@Nullable
public synchronized ByteString maybeGetTag(String tag) {
@@ -40,7 +39,6 @@ public class BaseTaggableObject implements TaggableObject {
return tags.get(tag);
}
/** {@inheritDoc} */
@Override
public ByteString getTag(String tag) {
ByteString b = maybeGetTag(tag);
@@ -49,7 +47,6 @@ public class BaseTaggableObject implements TaggableObject {
return b;
}
/** {@inheritDoc} */
@Override
public synchronized void setTag(String tag, ByteString value) {
checkNotNull(tag);
@@ -59,7 +56,6 @@ public class BaseTaggableObject implements TaggableObject {
tags.put(tag, value);
}
/** {@inheritDoc} */
@Override
public synchronized Map<String, ByteString> getTags() {
if (tags != null)

View File

@@ -998,13 +998,11 @@ public class Wallet extends BaseTaggableObject
}
}
/** {@inheritDoc} */
@Override
public boolean isPubKeyHashMine(byte[] pubkeyHash) {
return findKeyFromPubHash(pubkeyHash) != null;
}
/** {@inheritDoc} */
@Override
public boolean isWatchedScript(Script script) {
keyChainGroupLock.lock();
@@ -1030,7 +1028,6 @@ public class Wallet extends BaseTaggableObject
}
}
/** {@inheritDoc} */
@Override
public boolean isPubKeyMine(byte[] pubkey) {
return findKeyFromPubKey(pubkey) != null;
@@ -1051,7 +1048,6 @@ public class Wallet extends BaseTaggableObject
}
}
/** {@inheritDoc} */
@Override
public boolean isPayToScriptHashMine(byte[] payToScriptHash) {
return findRedeemDataFromScriptHash(payToScriptHash) != null;
@@ -2946,7 +2942,6 @@ public class Wallet extends BaseTaggableObject
}
}
/** {@inheritDoc} */
@Override
public Map<Sha256Hash, Transaction> getTransactionPool(Pool pool) {
lock.lock();