From 0c7a66371e9fbf37a5348df63ed1b6dac32142f8 Mon Sep 17 00:00:00 2001 From: Niki Roo Date: Sat, 18 May 2019 18:16:48 +0200 Subject: [PATCH] code cleanup --- .../nikiroo/fanfix/library/BasicLibrary.java | 19 ++++++------------- 1 file changed, 6 insertions(+), 13 deletions(-) diff --git a/src/be/nikiroo/fanfix/library/BasicLibrary.java b/src/be/nikiroo/fanfix/library/BasicLibrary.java index 3e3756f..380c5c9 100644 --- a/src/be/nikiroo/fanfix/library/BasicLibrary.java +++ b/src/be/nikiroo/fanfix/library/BasicLibrary.java @@ -191,8 +191,8 @@ abstract public class BasicLibrary { * @throws IOException * in case of IOException */ - public Image getCustomSourceCover(@SuppressWarnings("unused") String source) - throws IOException { + @SuppressWarnings("unused") + public Image getCustomSourceCover(String source) throws IOException { return null; } @@ -209,8 +209,8 @@ abstract public class BasicLibrary { * @throws IOException * in case of IOException */ - public Image getCustomAuthorCover(@SuppressWarnings("unused") String author) - throws IOException { + @SuppressWarnings("unused") + public Image getCustomAuthorCover(String author) throws IOException { return null; } @@ -328,9 +328,6 @@ abstract public class BasicLibrary { * * @param pg * the optional progress reporter - * - * @throws IOException - * in case of IOException */ public void refresh(Progress pg) { try { @@ -525,13 +522,9 @@ abstract public class BasicLibrary { * the starting character, *, 0 or a capital * letter * - * @return the authors that fulfill the starting letter - * - * @throws IOException - * in case of IOException + * @return the authors that fulfil the starting letter */ - private List getAuthorsGroup(List authors, char car) - throws IOException { + private List getAuthorsGroup(List authors, char car) { List accepted = new ArrayList(); for (String author : authors) { char first = '*'; -- 2.27.0