Remove some redundant 'throws'; allocate more reasonably sized StringBuffers for...
[zxing.git] / core / src / com / google / zxing / client / result / AddressBookParsedResult.java
index 6ae80b1..7ef889c 100644 (file)
@@ -105,7 +105,7 @@ public final class AddressBookParsedResult extends ParsedResult {
   }
 
   public String getDisplayResult() {
-    StringBuffer result = new StringBuffer();
+    StringBuffer result = new StringBuffer(100);
     maybeAppend(names, result);
     maybeAppend(pronunciation, result);
     maybeAppend(title, result);