Undo the ^= true thing in more files
[zxing.git] / core / src / com / google / zxing / oned / UPCEANReader.java
index be74932..be49027 100644 (file)
@@ -266,7 +266,7 @@ public abstract class UPCEANReader extends OneDReader {
           counterPosition++;
         }
         counters[counterPosition] = 1;
-        isWhite ^= true; // isWhite = !isWhite;
+        isWhite = !isWhite;
       }
     }
     throw ReaderException.getInstance();