Fixed a bug in geo coordinate display, where we were always tacking on "deg N" and...
[zxing.git] / core / src / com / google / zxing / client / result / AbstractDoCoMoResultParser.java
index 1c84175..3d2c1d2 100644 (file)
@@ -24,7 +24,7 @@ package com.google.zxing.client.result;
  * <p>Thanks to Jeff Griffin for proposing rewrite of these classes that relies less
  * on exception-based mechanisms during parsing.</p>
  *
- * @author srowen@google.com (Sean Owen)
+ * @author Sean Owen
  */
 abstract class AbstractDoCoMoResultParser extends ResultParser {
 
@@ -36,8 +36,4 @@ abstract class AbstractDoCoMoResultParser extends ResultParser {
     return matchSinglePrefixedField(prefix, rawText, ';', trim);
   }
 
-  static String[] maybeWrap(String value) {
-    return value == null ? null : new String[] { value };
-  }
-
 }