mirror of
https://codeberg.org/PGPainless/sop-java.git
synced 2024-12-22 12:57:57 +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
|
@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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue