Biiig standardization of whitespace. 2 space indents now, no tabs.
[zxing.git] / core / src / com / google / zxing / client / result / AbstractDoCoMoResult.java
index fdf3503..668071e 100644 (file)
@@ -52,7 +52,7 @@ abstract class AbstractDoCoMoResult extends ParsedReaderResult {
           // No terminating semicolon? uh, done. Set i such that loop terminates and break
           i = rawText.length();
           done = true;
-        } else if (rawText.charAt(i-1) == '\\') {
+        } else if (rawText.charAt(i - 1) == '\\') {
           // semicolon was escaped so continue
           i++;
         } else {