mirror of
https://github.com/zxing/zxing.git
synced 2024-11-10 13:04:05 -08:00
Added redundant abstract method declarations to maybe work around problems on Nokias
git-svn-id: https://zxing.googlecode.com/svn/trunk@599 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
parent
7e022edf66
commit
b0b0afc172
|
@ -119,4 +119,12 @@ public abstract class BaseMonochromeBitmapSource implements MonochromeBitmapSour
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// These two methods should not need to exist because they are defined in the interface that
|
||||||
|
// this abstract class implements. However this seems to cause problems on some Nokias.
|
||||||
|
// So we write these redundant declarations.
|
||||||
|
|
||||||
|
public abstract int getHeight();
|
||||||
|
|
||||||
|
public abstract int getWidth();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue