mirror of
https://github.com/Qortal/altcoinj.git
synced 2025-07-31 20:11:23 +00:00
JavaDoc: Remove unnecessary {@inheritDoc}.
This commit is contained in:
@@ -316,7 +316,6 @@ public class DeterministicKey extends ECKey {
|
||||
return super.isPubKeyOnly() && (parent == null || parent.isPubKeyOnly());
|
||||
}
|
||||
|
||||
/** {@inheritDoc} */
|
||||
@Override
|
||||
public boolean hasPrivKey() {
|
||||
return findParentWithPrivKey() != null;
|
||||
|
@@ -436,9 +436,6 @@ public class PaymentChannelClient implements IPaymentChannelClient {
|
||||
conn.channelOpen(wasInitiated);
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
public void receiveMessage(Protos.TwoWayChannelMessage msg) throws InsufficientMoneyException {
|
||||
lock.lock();
|
||||
|
@@ -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)
|
||||
|
@@ -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();
|
||||
|
Reference in New Issue
Block a user