From a0ce93dc381015a83fd3ac513c6a35966be88681 Mon Sep 17 00:00:00 2001 From: Maschell Date: Sat, 6 Apr 2019 16:56:38 +0200 Subject: [PATCH] Fix the return type of the "getDecryptedOutputAsInputStream" function --- src/de/mas/wiiu/jnus/DecryptionService.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/de/mas/wiiu/jnus/DecryptionService.java b/src/de/mas/wiiu/jnus/DecryptionService.java index 0b3a7ac..2df4864 100644 --- a/src/de/mas/wiiu/jnus/DecryptionService.java +++ b/src/de/mas/wiiu/jnus/DecryptionService.java @@ -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);