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:
srowen 2010-01-10 12:41:04 +00:00
parent 2d0b3bc83a
commit 719ed5b883
4 changed files with 4 additions and 4 deletions

View file

@ -211,7 +211,7 @@ public final class Code128Reader extends OneDReader {
counterPosition++;
}
counters[counterPosition] = 1;
isWhite ^= true; // isWhite = !isWhite;
isWhite = !isWhite;
}
}
throw ReaderException.getInstance();

View file

@ -207,7 +207,7 @@ public final class Code39Reader extends OneDReader {
counterPosition++;
}
counters[counterPosition] = 1;
isWhite ^= true; // isWhite = !isWhite;
isWhite = !isWhite;
}
}
throw ReaderException.getInstance();

View file

@ -310,7 +310,7 @@ public final class ITFReader extends OneDReader {
counterPosition++;
}
counters[counterPosition] = 1;
isWhite ^= true; // isWhite = !isWhite;
isWhite = !isWhite;
}
}
throw ReaderException.getInstance();

View file

@ -266,7 +266,7 @@ public abstract class UPCEANReader extends OneDReader {
counterPosition++;
}
counters[counterPosition] = 1;
isWhite ^= true; // isWhite = !isWhite;
isWhite = !isWhite;
}
}
throw ReaderException.getInstance();