mirror of
https://github.com/zxing/zxing.git
synced 2025-02-02 05:41:08 -08:00
Oops, fix an error introduced in recent change
git-svn-id: https://zxing.googlecode.com/svn/trunk@504 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
parent
6d124e1be5
commit
4cecc3578d
|
@ -113,7 +113,7 @@ public abstract class GridSampler {
|
|||
* @param points actual points in x1,y1,...,xn,yn form
|
||||
* @throws ReaderException if an endpoint is lies outside the image boundaries
|
||||
*/
|
||||
static void checkAndNudgePoints(MonochromeBitmapSource image, float[] points) throws ReaderException {
|
||||
protected static void checkAndNudgePoints(MonochromeBitmapSource image, float[] points) throws ReaderException {
|
||||
int width = image.getWidth();
|
||||
int height = image.getHeight();
|
||||
// Check and nudge points from start until we see some that are OK:
|
||||
|
|
Loading…
Reference in a new issue