Oops realized DM decoder also benefits from that last possible fix

git-svn-id: https://zxing.googlecode.com/svn/trunk@1166 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
srowen 2009-12-22 12:24:02 +00:00
parent 18002649eb
commit 00c49493c0

View file

@ -237,6 +237,9 @@ public final class Detector {
if (error > 0) {
y += ystep;
error -= dx;
if (y == toY) {
break;
}
}
}
return new ResultPointsAndTransitions(from, to, transitions);