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:
srowen 2008-10-04 14:46:15 +00:00
parent 7e022edf66
commit b0b0afc172

View file

@ -119,4 +119,12 @@ public abstract class BaseMonochromeBitmapSource implements MonochromeBitmapSour
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();
}