From: Peter Hancock Date: Mon, 22 Aug 2011 09:59:53 +0000 (+0000) Subject: Fixed checkstyle warnings X-Git-Tag: fop-1_1rc1old~186 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=c3e956474f171eec631678fb5797e5469675b009;p=xmlgraphics-fop.git Fixed checkstyle warnings git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1160172 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/java/org/apache/fop/afp/modca/AbstractAFPObject.java b/src/java/org/apache/fop/afp/modca/AbstractAFPObject.java index a88c0e4c9..1dd14b124 100644 --- a/src/java/org/apache/fop/afp/modca/AbstractAFPObject.java +++ b/src/java/org/apache/fop/afp/modca/AbstractAFPObject.java @@ -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 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. */