X-Git-Url: http://git.nikiroo.be/?p=fanfix.git;a=blobdiff_plain;f=src%2Fbe%2Fnikiroo%2Ffanfix%2Flibrary%2FBasicLibrary.java;h=4abaefa34f099943119bbb9009dd9e42bf42ac35;hp=b8b8185cd50f75b915d732901ce8a79814bb9727;hb=d4449e9632aac4c20bdb9183cabb37b377270c41;hpb=32ba91e9d2443ac9d17d3db66eef4c570d02cdf1 diff --git a/src/be/nikiroo/fanfix/library/BasicLibrary.java b/src/be/nikiroo/fanfix/library/BasicLibrary.java index b8b8185..4abaefa 100644 --- a/src/be/nikiroo/fanfix/library/BasicLibrary.java +++ b/src/be/nikiroo/fanfix/library/BasicLibrary.java @@ -185,7 +185,7 @@ abstract public class BasicLibrary { /** * Set the author cover to the given story cover. * - * @param source + * @param author * the author to change * @param luid * the story LUID @@ -599,7 +599,8 @@ abstract public class BasicLibrary { * * @return the corresponding {@link Story} or NULL if not found */ - public synchronized Story getStory(String luid, MetaData meta, Progress pg) { + public synchronized Story getStory(String luid, + @SuppressWarnings("javadoc") MetaData meta, Progress pg) { if (pg == null) { pg = new Progress(); @@ -633,9 +634,10 @@ abstract public class BasicLibrary { } catch (IOException e) { // We should not have not-supported files in the // library - Instance.getTraceHandler() - .error(new IOException("Cannot load file from library: " - + file, e)); + Instance.getTraceHandler().error( + new IOException(String.format( + "Cannot load file of type '%s' from library: %s", + meta.getType(), file), e)); } finally { pgProcess.done(); pg.done();