Eliminate javadocs warnings. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/commons/branches/commons-1_5rc1@1353187 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/src/java/org/apache/xmlgraphics/image/loader/impl/ImageRawPNG.java b/src/java/org/apache/xmlgraphics/image/loader/impl/ImageRawPNG.java index b9ca85b..63ea3d4 100644 --- a/src/java/org/apache/xmlgraphics/image/loader/impl/ImageRawPNG.java +++ b/src/java/org/apache/xmlgraphics/image/loader/impl/ImageRawPNG.java
@@ -45,13 +45,14 @@ * Main constructor. * @param info the image info object * @param in the ImageInputStream with the raw content - * @param colorSpace the color space + * @param colorModel the color model + * @param bitDepth the bit depth * @param iccProfile an ICC color profile or null if no profile is associated */ - public ImageRawPNG(ImageInfo info, InputStream in, ColorModel cm, int bitDepth, ICC_Profile iccProfile) { + public ImageRawPNG(ImageInfo info, InputStream in, ColorModel colorModel, int bitDepth, ICC_Profile iccProfile) { super(info, ImageFlavor.RAW_PNG, in); this.iccProfile = iccProfile; - this.cm = cm; + this.cm = colorModel; this.bitDepth = bitDepth; }