X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fbe%2Fnikiroo%2Ffanfix%2Fdata%2FParagraph.java;h=1a7429a403a8a6f0bc0742fb29f14ad2d7811da5;hb=211f7ddb50f68aa8a999023ef6d63d5756bdace6;hp=e409c286ae2949be6242c772b6fb7a1783e6a51f;hpb=793f1071fae48daed3b545a03a286c85e527d244;p=nikiroo-utils.git diff --git a/src/be/nikiroo/fanfix/data/Paragraph.java b/src/be/nikiroo/fanfix/data/Paragraph.java index e409c28..1a7429a 100644 --- a/src/be/nikiroo/fanfix/data/Paragraph.java +++ b/src/be/nikiroo/fanfix/data/Paragraph.java @@ -30,14 +30,19 @@ public class Paragraph { private String content; private long words; + /** + * Empty constructor, not to use. + */ + @SuppressWarnings("unused") + private Paragraph() { + // for serialisation purposes + } + /** * Create a new {@link Paragraph} with the given image. * - * @param support - * the support that will be used to fetch the image via - * {@link Paragraph#getContentImage()}. - * @param content - * the content image of this paragraph + * @param imageUrl + * the image as an URL */ public Paragraph(URL imageUrl) { this(ParagraphType.IMAGE, imageUrl.toString(), 0);