mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-23 04:42:06 +01:00
Remove unused methods in DetachedSignature
This commit is contained in:
parent
7bc35dcba3
commit
910bae58c0
1 changed files with 0 additions and 19 deletions
|
@ -28,7 +28,6 @@ public class DetachedSignature {
|
|||
private final PGPSignature signature;
|
||||
private final PGPKeyRing signingKeyRing;
|
||||
private final SubkeyIdentifier signingKeyIdentifier;
|
||||
private boolean verified;
|
||||
|
||||
/**
|
||||
* Create a new {@link DetachedSignature} object.
|
||||
|
@ -43,24 +42,6 @@ public class DetachedSignature {
|
|||
this.signingKeyIdentifier = signingKeyIdentifier;
|
||||
}
|
||||
|
||||
/**
|
||||
* Mark this {@link DetachedSignature} as verified.
|
||||
*
|
||||
* @param verified verified
|
||||
*/
|
||||
public void setVerified(boolean verified) {
|
||||
this.verified = verified;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return true iff the signature is verified.
|
||||
*
|
||||
* @return verified
|
||||
*/
|
||||
public boolean isVerified() {
|
||||
return verified;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the OpenPGP signature.
|
||||
*
|
||||
|
|
Loading…
Reference in a new issue