Update nikiroo-utils, remove Instance.syserr/trace
[nikiroo-utils.git] / src / be / nikiroo / fanfix / data / Paragraph.java
index 8a9130bf83fdcc8342a796f125a64a1aa994ea4c..273aca3af7884f4ed3de556b84837465b151015f 100644 (file)
@@ -33,6 +33,7 @@ public class Paragraph {
        /**
         * Empty constructor, not to use.
         */
+       @SuppressWarnings("unused")
        private Paragraph() {
                // for serialisation purposes
        }
@@ -44,7 +45,7 @@ public class Paragraph {
         *            the image as an URL
         */
        public Paragraph(URL imageUrl) {
-               this(ParagraphType.IMAGE, imageUrl.toString(), 0);
+               this(ParagraphType.IMAGE, imageUrl.toString(), 1);
        }
 
        /**
@@ -55,7 +56,7 @@ public class Paragraph {
         * @param content
         *            the content of this paragraph
         * @param words
-        *            the number of words
+        *            the number of words (or images)
         */
        public Paragraph(ParagraphType type, String content, long words) {
                this.type = type;
@@ -102,7 +103,7 @@ public class Paragraph {
        }
 
        /**
-        * The number of words in this {@link Paragraph}.
+        * The number of words (or images) in this {@link Paragraph}.
         * 
         * @return the number of words
         */
@@ -111,7 +112,7 @@ public class Paragraph {
        }
 
        /**
-        * The number of words in this {@link Paragraph}.
+        * The number of words (or images) in this {@link Paragraph}.
         * 
         * @param words
         *            the number of words to set