More reckless refactoring and code style tweaks -- mostly adding braces around condit...
[zxing.git] / core / src / com / google / zxing / client / result / VCardResultParser.java
index c1f9de1..51182ae 100644 (file)
@@ -61,7 +61,7 @@ final class VCardResultParser extends ResultParser {
   private static String[] matchVCardPrefixedField(String prefix, String rawText, boolean trim) {
     Vector matches = null;
     int i = 0;
-    final int max = rawText.length();
+    int max = rawText.length();
     while (i < max) {
       i = rawText.indexOf(prefix, i);
       if (i < 0) {