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()); return super.isPubKeyOnly() && (parent == null || parent.isPubKeyOnly());
} }
/** {@inheritDoc} */
@Override @Override
public boolean hasPrivKey() { public boolean hasPrivKey() {
return findParentWithPrivKey() != null; return findParentWithPrivKey() != null;

View File

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

View File

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

View File

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