You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xmlgraphics.apache.org by ga...@apache.org on 2012/06/23 21:39:41 UTC

svn commit: r1353187 - /xmlgraphics/commons/branches/commons-1_5rc1/src/java/org/apache/xmlgraphics/image/loader/impl/ImageRawPNG.java

Author: gadams
Date: Sat Jun 23 19:39:41 2012
New Revision: 1353187

URL: http://svn.apache.org/viewvc?rev=1353187&view=rev
Log:
Eliminate javadocs warnings.

Modified:
    xmlgraphics/commons/branches/commons-1_5rc1/src/java/org/apache/xmlgraphics/image/loader/impl/ImageRawPNG.java

Modified: xmlgraphics/commons/branches/commons-1_5rc1/src/java/org/apache/xmlgraphics/image/loader/impl/ImageRawPNG.java
URL: http://svn.apache.org/viewvc/xmlgraphics/commons/branches/commons-1_5rc1/src/java/org/apache/xmlgraphics/image/loader/impl/ImageRawPNG.java?rev=1353187&r1=1353186&r2=1353187&view=diff
==============================================================================
--- xmlgraphics/commons/branches/commons-1_5rc1/src/java/org/apache/xmlgraphics/image/loader/impl/ImageRawPNG.java (original)
+++ xmlgraphics/commons/branches/commons-1_5rc1/src/java/org/apache/xmlgraphics/image/loader/impl/ImageRawPNG.java Sat Jun 23 19:39:41 2012
@@ -45,13 +45,14 @@ public class ImageRawPNG extends ImageRa
      * 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;
     }
 



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@xmlgraphics.apache.org
For additional commands, e-mail: commits-help@xmlgraphics.apache.org