Remove some redundant 'throws'; allocate more reasonably sized StringBuffers for...
[zxing.git] / core / src / com / google / zxing / client / result / TelParsedResult.java
index 20cdd51..a618fe7 100644 (file)
@@ -17,7 +17,7 @@
 package com.google.zxing.client.result;
 
 /**
- * @author srowen@google.com (Sean Owen)
+ * @author Sean Owen
  */
 public final class TelParsedResult extends ParsedResult {
 
@@ -45,7 +45,7 @@ public final class TelParsedResult extends ParsedResult {
   }
 
   public String getDisplayResult() {
-    StringBuffer result = new StringBuffer();
+    StringBuffer result = new StringBuffer(20);
     maybeAppend(number, result);
     maybeAppend(title, result);
     return result.toString();