diff options
author | Vincent Hennebert <vhennebert@apache.org> | 2014-07-15 20:25:58 +0000 |
---|---|---|
committer | Vincent Hennebert <vhennebert@apache.org> | 2014-07-15 20:25:58 +0000 |
commit | c411c5fb578593a402c2e93eff73f17dd10dd819 (patch) | |
tree | 58cc742f3bd5f99c73a4ee78a37c4302613cd0b8 /src/java/org/apache/fop/afp/ioca/ImageOutputControl.java | |
parent | c17e7bea1928df9ec8b2b6d24d4e0de100d3686d (diff) | |
download | xmlgraphics-fop-c411c5fb578593a402c2e93eff73f17dd10dd819.tar.gz xmlgraphics-fop-c411c5fb578593a402c2e93eff73f17dd10dd819.zip |
Enabled Checkstyle ExplicitInitializationCheck and fixed resulting warnings
That check had been agreed upon but left disabled because of the number of warnings too high to fix manually
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1610839 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/afp/ioca/ImageOutputControl.java')
-rw-r--r-- | src/java/org/apache/fop/afp/ioca/ImageOutputControl.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/java/org/apache/fop/afp/ioca/ImageOutputControl.java b/src/java/org/apache/fop/afp/ioca/ImageOutputControl.java index 7ea84dfad..8e7ff750c 100644 --- a/src/java/org/apache/fop/afp/ioca/ImageOutputControl.java +++ b/src/java/org/apache/fop/afp/ioca/ImageOutputControl.java @@ -34,19 +34,19 @@ import org.apache.fop.afp.util.BinaryUtils; public class ImageOutputControl extends AbstractAFPObject { /** the orientation of the image */ - private int orientation = 0; + private int orientation; /** * Specifies the offset, along the X-axis, of the IM image object area * origin to the origin of the including page */ - private int xCoord = 0; + private int xCoord; /** * Specifies the offset, along the Y-axis, of the IM image object area * origin to the origin of the including page */ - private int yCoord = 0; + private int yCoord; /** map an image point to a single presentation device */ private boolean singlePoint = true; |