mirror of
https://github.com/Maschell/JNUSLib.git
synced 2024-11-18 05:59:20 +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();
|
return out.toByteArray();
|
||||||
|
|
||||||
}
|
}
|
||||||
public InputStreamWithException getDecryptedOutputAsInputStream(FSTEntry fstEntry) throws IOException {
|
|
||||||
|
public PipedInputStreamWithException getDecryptedOutputAsInputStream(FSTEntry fstEntry) throws IOException {
|
||||||
PipedInputStreamWithException in = new PipedInputStreamWithException();
|
PipedInputStreamWithException in = new PipedInputStreamWithException();
|
||||||
PipedOutputStream out = new PipedOutputStream(in);
|
PipedOutputStream out = new PipedOutputStream(in);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user