mirror of
https://codeberg.org/PGPainless/sop-java.git
synced 2024-12-22 12:57:57 +01:00
Fix return types of sign builders
This commit is contained in:
parent
6d5005660c
commit
e175ee6208
2 changed files with 2 additions and 2 deletions
|
@ -20,7 +20,7 @@ public interface AbstractSign<T> {
|
|||
*
|
||||
* @return builder instance
|
||||
*/
|
||||
DetachedSign noArmor();
|
||||
T noArmor();
|
||||
|
||||
/**
|
||||
* Add one or more signing keys.
|
||||
|
|
|
@ -20,6 +20,6 @@ public interface InlineSign extends AbstractSign<InlineSign> {
|
|||
*
|
||||
* @throws sop.exception.SOPGPException.UnsupportedOption if this option is not supported
|
||||
*/
|
||||
DetachedSign mode(InlineSignAs mode) throws SOPGPException.UnsupportedOption;
|
||||
InlineSign mode(InlineSignAs mode) throws SOPGPException.UnsupportedOption;
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue