< prev index next >

src/java.desktop/share/classes/java/awt/image/LookupOp.java

Print this page

        

@@ -470,11 +470,11 @@
      */
     public final RenderingHints getRenderingHints() {
         return hints;
     }
 
-    private final void byteFilter(ByteLookupTable lookup, Raster src,
+    private void byteFilter(ByteLookupTable lookup, Raster src,
                                   WritableRaster dst,
                                   int width, int height, int numBands) {
         int[] srcPix = null;
 
         // Find the ref to the table and the offset

@@ -517,11 +517,11 @@
                 dst.setSamples(0, y, width, 1, band, srcPix);
             }
         }
     }
 
-    private final void shortFilter(ShortLookupTable lookup, Raster src,
+    private void shortFilter(ShortLookupTable lookup, Raster src,
                                    WritableRaster dst,
                                    int width, int height, int numBands) {
         int band;
         int[] srcPix = null;
 
< prev index next >