]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Fixed checkstyle warnings
authorPeter Hancock <phancock@apache.org>
Mon, 22 Aug 2011 09:59:53 +0000 (09:59 +0000)
committerPeter Hancock <phancock@apache.org>
Mon, 22 Aug 2011 09:59:53 +0000 (09:59 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1160172 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/afp/modca/AbstractAFPObject.java

index a88c0e4c99671152e6e131f88e9753f7cde6789d..1dd14b1249b01a4a24f8b5edf557fec23281db2d 100644 (file)
@@ -56,6 +56,7 @@ public abstract class AbstractAFPObject implements Streamable {
         0x00, // Reserved
     };
 
+    /** Length of bytes of a Structured Field Header */
     protected static final int SF_HEADER_LENGTH = SF_HEADER.length;
 
     /**
@@ -78,7 +79,7 @@ public abstract class AbstractAFPObject implements Streamable {
      * @param category the category code
      */
     protected static void copySF(byte[] data, byte clazz, byte type, byte category) {
-        System.arraycopy(SF_HEADER, 0, data, 0, SF_HEADER.length);
+        System.arraycopy(SF_HEADER, 0, data, 0, SF_HEADER_LENGTH);
         data[3] = clazz;
         data[4] = type;
         data[5] = category;
@@ -88,6 +89,7 @@ public abstract class AbstractAFPObject implements Streamable {
      * Writes a collection of Streamable to the AFP Datastream.
      *
      * @param objects a list of AFPObjects
+     * @param <S> Streamable view of an AFPObject
      * @param os The stream to write to
      * @throws java.io.IOException an I/O exception of some sort has occurred.
      */