]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Checkstyle fixes
authorAdrian Cumiskey <acumiskey@apache.org>
Wed, 5 Dec 2007 17:47:44 +0000 (17:47 +0000)
committerAdrian Cumiskey <acumiskey@apache.org>
Wed, 5 Dec 2007 17:47:44 +0000 (17:47 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@601447 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/render/afp/modca/ImageRasterPattern.java

index 422eeb33d7a29c75d84140596021fe3131a352b1..373e506318b010b0e3d61d26005411224ab5adb5 100644 (file)
@@ -685,6 +685,7 @@ public class ImageRasterPattern {
      * grey scale specified. The scale should be between 0 (darkest)
      * and 16 (lightest).
      * @param greyscale The grey scale value (0 - 16)
+     * @return the raster data byte array for the given greyscale value
      */
     public static byte[] getRasterData(int greyscale) {
 
@@ -751,13 +752,8 @@ public class ImageRasterPattern {
         }
 
         for (int i = 0; i < repeat; i++) {
-
             System.arraycopy(greypattern, 0, rasterdata, i * 32, 32);
-
         }
-
         return rasterdata;
-
     }
-
 }