Skip to content

Commit

Permalink
Issue 1221 / Issue 1276, fix compile error for AS
Browse files Browse the repository at this point in the history
git-svn-id: http://zxing.googlecode.com/svn/trunk@2300 59b500cc-1b3d-0410-9834-0bbf25fbcc57
  • Loading branch information
srowen committed May 31, 2012
1 parent 2c1feb8 commit f660114
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public class DefaultGridSampler extends GridSampler
// sufficient to check the endpoints
checkAndNudgePoints(image, points);
try {
for (var x:int = 0; x < max; x += 2) {
for (x = 0; x < max; x += 2) {
if (image._get(int(points[x]), int( points[x + 1]))) {
// Black(-ish) pixel
bits._set(x >> 1, y);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ package com.google.zxing.multi.qrcode.detector
import com.google.zxing.DecodeHintType;
import com.google.zxing.ReaderException;
import com.google.zxing.ResultPoint;
import com.google.zxing.ResultPointCallback;
import com.google.zxing.common.BitMatrix;
import com.google.zxing.common.Collections;
import com.google.zxing.common.ResultPointCallback;
import com.google.zxing.common.flexdatatypes.ArrayList;
import com.google.zxing.common.flexdatatypes.HashTable;
import com.google.zxing.qrcode.detector.FinderPattern;
Expand Down

0 comments on commit f660114

Please sign in to comment.