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