Removed deprecation of 'cropping' constructor -- in the end replacing it introduced some non-trivial performance hit, not worth it

git-svn-id: https://zxing.googlecode.com/svn/trunk@938 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
srowen 2009-05-11 21:42:07 +00:00
parent 793f4c7176
commit 6d472ea18a

View file

@ -60,10 +60,7 @@ public final class BufferedImageMonochromeBitmapSource extends BaseMonochromeBit
* @param right one more than the x coordinate of rightmost pixels to decode, i.e. we will decode
* pixels whose x coordinate is in [left,right)
* @param bottom likewise, one more than the y coordinate of the bottommost pixels to decode
* @deprecated use
* {@link com.google.zxing.CroppedMonochromeBitmapSource#CroppedMonochromeBitmapSource(MonochromeBitmapSource, int, int, int, int)}
*/
@Deprecated
public BufferedImageMonochromeBitmapSource(BufferedImage image, int left, int top, int right,
int bottom) {
super(right - left, bottom - top);