Rename DetachInbandSignatureAndMessage to InlineDetach

This commit is contained in:
Paul Schaub 2022-05-24 21:19:37 +02:00
parent 0bfc12c1e1
commit fd9192995f
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311
4 changed files with 8 additions and 8 deletions

View file

@ -12,7 +12,7 @@ import picocli.CommandLine;
import sop.Signatures;
import sop.cli.picocli.SopCLI;
import sop.exception.SOPGPException;
import sop.operation.DetachInbandSignatureAndMessage;
import sop.operation.InlineDetach;
@CommandLine.Command(name = "detach-inband-signature-and-message",
description = "Split a clearsigned message",
@ -32,7 +32,7 @@ public class DetachInbandSignatureAndMessageCmd implements Runnable {
@Override
public void run() {
DetachInbandSignatureAndMessage detach = SopCLI.getSop().detachInbandSignatureAndMessage();
InlineDetach detach = SopCLI.getSop().detachInbandSignatureAndMessage();
if (detach == null) {
throw new SOPGPException.UnsupportedSubcommand("Command 'detach-inband-signature-and-message' not implemented.");
}