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