mirror of
https://codeberg.org/PGPainless/sop-java.git
synced 2024-11-17 13:12:04 +01:00
Fix external armor and dearmor commands
This commit is contained in:
parent
b15acc79b3
commit
951cf9cbca
2 changed files with 2 additions and 2 deletions
|
@ -35,6 +35,6 @@ public class ArmorExternal implements Armor {
|
|||
|
||||
@Override
|
||||
public Ready data(InputStream data) throws SOPGPException.BadData, IOException {
|
||||
return ExternalSOP.ready(Runtime.getRuntime(), commandList, envList);
|
||||
return ExternalSOP.ready(Runtime.getRuntime(), commandList, envList, data);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -28,6 +28,6 @@ public class DearmorExternal implements Dearmor {
|
|||
|
||||
@Override
|
||||
public Ready data(InputStream data) throws SOPGPException.BadData, IOException {
|
||||
return ExternalSOP.ready(Runtime.getRuntime(), commandList, envList);
|
||||
return ExternalSOP.ready(Runtime.getRuntime(), commandList, envList, data);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue