mirror of
https://github.com/Maschell/JNUSLib.git
synced 2024-11-22 07:59:19 +01:00
Fix the return type of the "getDecryptedOutputAsInputStream" function
This commit is contained in:
parent
502acbbf68
commit
a0ce93dc38
@ -302,7 +302,8 @@ public final class DecryptionService {
|
||||
return out.toByteArray();
|
||||
|
||||
}
|
||||
public InputStreamWithException getDecryptedOutputAsInputStream(FSTEntry fstEntry) throws IOException {
|
||||
|
||||
public PipedInputStreamWithException getDecryptedOutputAsInputStream(FSTEntry fstEntry) throws IOException {
|
||||
PipedInputStreamWithException in = new PipedInputStreamWithException();
|
||||
PipedOutputStream out = new PipedOutputStream(in);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user