mirror of
https://github.com/zxing/zxing.git
synced 2024-11-10 13:04:05 -08:00
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:
parent
24580d6bac
commit
d9498fdc4e
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue