Removed getWidth() and getHeight() which I added by mistake. They are already present on the base class.

git-svn-id: https://zxing.googlecode.com/svn/trunk@876 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
dswitkin 2009-03-06 19:06:06 +00:00
parent 24580d6bac
commit d9498fdc4e

View file

@ -37,14 +37,6 @@ public final class LCDUIImageMonochromeBitmapSource extends BaseMonochromeBitmap
pixelHolder = new int[1];
}
public final int getHeight() {
return image.getHeight();
}
public final int getWidth() {
return image.getWidth();
}
// This is expensive and should be used very sparingly.
protected int getLuminance(int x, int y) {
image.getRGB(pixelHolder, 0, getWidth(), x, y, 1, 1);