mirror of
https://github.com/zxing/zxing.git
synced 2025-03-05 20:48:51 -08:00
Undo the ^= true thing in more files
git-svn-id: https://zxing.googlecode.com/svn/trunk@1182 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
parent
2d0b3bc83a
commit
719ed5b883
|
@ -211,7 +211,7 @@ public final class Code128Reader extends OneDReader {
|
|||
counterPosition++;
|
||||
}
|
||||
counters[counterPosition] = 1;
|
||||
isWhite ^= true; // isWhite = !isWhite;
|
||||
isWhite = !isWhite;
|
||||
}
|
||||
}
|
||||
throw ReaderException.getInstance();
|
||||
|
|
|
@ -207,7 +207,7 @@ public final class Code39Reader extends OneDReader {
|
|||
counterPosition++;
|
||||
}
|
||||
counters[counterPosition] = 1;
|
||||
isWhite ^= true; // isWhite = !isWhite;
|
||||
isWhite = !isWhite;
|
||||
}
|
||||
}
|
||||
throw ReaderException.getInstance();
|
||||
|
|
|
@ -310,7 +310,7 @@ public final class ITFReader extends OneDReader {
|
|||
counterPosition++;
|
||||
}
|
||||
counters[counterPosition] = 1;
|
||||
isWhite ^= true; // isWhite = !isWhite;
|
||||
isWhite = !isWhite;
|
||||
}
|
||||
}
|
||||
throw ReaderException.getInstance();
|
||||
|
|
|
@ -266,7 +266,7 @@ public abstract class UPCEANReader extends OneDReader {
|
|||
counterPosition++;
|
||||
}
|
||||
counters[counterPosition] = 1;
|
||||
isWhite ^= true; // isWhite = !isWhite;
|
||||
isWhite = !isWhite;
|
||||
}
|
||||
}
|
||||
throw ReaderException.getInstance();
|
||||
|
|
Loading…
Reference in a new issue