diff --git a/src/de/mas/wiiu/jnus/interfaces/NUSDataProvider.java b/src/de/mas/wiiu/jnus/interfaces/NUSDataProvider.java index 6f4ad8f..9d9345f 100644 --- a/src/de/mas/wiiu/jnus/interfaces/NUSDataProvider.java +++ b/src/de/mas/wiiu/jnus/interfaces/NUSDataProvider.java @@ -37,20 +37,20 @@ public interface NUSDataProvider { * @return * @throws IOException */ - public abstract InputStream getInputStreamFromContent(Content content, long offset, Optional size) throws IOException; + public InputStream getInputStreamFromContent(Content content, long offset, Optional size) throws IOException; default public InputStream getInputStreamFromContent(Content content, long offset) throws IOException { return getInputStreamFromContent(content, offset, Optional.empty()); } - public abstract Optional getContentH3Hash(Content content) throws IOException; + public Optional getContentH3Hash(Content content) throws IOException; - public abstract Optional getRawTMD() throws IOException; + public Optional getRawTMD() throws IOException; - public abstract Optional getRawTicket() throws IOException; + public Optional getRawTicket() throws IOException; - public abstract Optional getRawCert() throws IOException; + public Optional getRawCert() throws IOException; - public abstract void cleanup() throws IOException; + public void cleanup() throws IOException; } \ No newline at end of file