summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/convwatch/PixelCounter.java
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/runner/convwatch/PixelCounter.java')
-rw-r--r--qadevOOo/runner/convwatch/PixelCounter.java5
1 files changed, 0 insertions, 5 deletions
diff --git a/qadevOOo/runner/convwatch/PixelCounter.java b/qadevOOo/runner/convwatch/PixelCounter.java
index ef0223a7c1e5..b7723fd779a1 100644
--- a/qadevOOo/runner/convwatch/PixelCounter.java
+++ b/qadevOOo/runner/convwatch/PixelCounter.java
@@ -91,15 +91,10 @@ class graphics_stuff
return 0;
}
- public static void handlesinglepixel(int x, int y, int pixel)
- {
- }
-
public static void countPixel(ImageHelper img, int _x, int _y, int _w, int _h, CountPixel _aPixelCounter)
{
for (int y = 0; y < _h; y++) {
for (int x = 0; x < _w; x++) {
- // handlesinglepixel(x+i, y+j, pixels[j * w + i]);
_aPixelCounter.count(img.getPixel(x,y));
}
}