Fix external armor and dearmor commands

This commit is contained in:
Paul Schaub 2023-01-12 16:04:22 +01:00
parent b15acc79b3
commit 951cf9cbca
2 changed files with 2 additions and 2 deletions

View file

@ -35,6 +35,6 @@ public class ArmorExternal implements Armor {
@Override @Override
public Ready data(InputStream data) throws SOPGPException.BadData, IOException { public Ready data(InputStream data) throws SOPGPException.BadData, IOException {
return ExternalSOP.ready(Runtime.getRuntime(), commandList, envList); return ExternalSOP.ready(Runtime.getRuntime(), commandList, envList, data);
} }
} }

View file

@ -28,6 +28,6 @@ public class DearmorExternal implements Dearmor {
@Override @Override
public Ready data(InputStream data) throws SOPGPException.BadData, IOException { public Ready data(InputStream data) throws SOPGPException.BadData, IOException {
return ExternalSOP.ready(Runtime.getRuntime(), commandList, envList); return ExternalSOP.ready(Runtime.getRuntime(), commandList, envList, data);
} }
} }