mirror of
https://github.com/zxing/zxing.git
synced 2025-03-05 20:48:51 -08:00
Reordered the address book fields to something a little more standard/reasonable.
git-svn-id: https://zxing.googlecode.com/svn/trunk@623 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
parent
77d29c3d7a
commit
f142a9478c
|
@ -94,14 +94,14 @@ public final class AddressBookParsedResult extends ParsedResult {
|
|||
public String getDisplayResult() {
|
||||
StringBuffer result = new StringBuffer();
|
||||
maybeAppend(names, result);
|
||||
maybeAppend(emails, result);
|
||||
maybeAppend(title, result);
|
||||
maybeAppend(org, result);
|
||||
maybeAppend(address, result);
|
||||
maybeAppend(phoneNumbers, result);
|
||||
maybeAppend(note, result);
|
||||
maybeAppend(org, result);
|
||||
maybeAppend(birthday, result);
|
||||
maybeAppend(title, result);
|
||||
maybeAppend(emails, result);
|
||||
maybeAppend(url, result);
|
||||
maybeAppend(birthday, result);
|
||||
maybeAppend(note, result);
|
||||
return result.toString();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue