Removed @Override from Tom's code, which gave errors in 1.5 because they referred to an interface instead of a base class.

git-svn-id: https://zxing.googlecode.com/svn/trunk@328 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
dswitkin 2008-03-31 19:49:08 +00:00
parent 93db610970
commit 87f79c076c

View file

@ -29,22 +29,18 @@ public class BitmapCamera implements CameraSource {
paint.setAntiAlias(true);
}
@Override
public int getWidth() {
return bounds.right;
}
@Override
public int getHeight() {
return bounds.bottom;
}
@Override
public boolean open() {
return true;
}
@Override
public boolean capture(Canvas canvas) {
if (
bounds.right == bitmap.width() &&
@ -56,7 +52,6 @@ public class BitmapCamera implements CameraSource {
return true;
}
@Override
public void close() {
/* nothing to do */
}