mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-27 11:42:16 -05:00
Optimizations:
- Don't instantiate an empty Address array just to throw it away (less gabarge collection) - Use a StringBuilder rather than a StringBuffer (faster as it isn't synchronized)
This commit is contained in:
parent
ef1d958092
commit
8bb6eb146b
@ -388,7 +388,7 @@ public class Address
|
||||
addresses.add(new Address(address, personal));
|
||||
pairStartIndex = pairEndIndex + 2;
|
||||
}
|
||||
return addresses.toArray(new Address[] { });
|
||||
return addresses.toArray(new Address[addresses.size()]);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -405,7 +405,7 @@ public class Address
|
||||
{
|
||||
return null;
|
||||
}
|
||||
StringBuffer sb = new StringBuffer();
|
||||
StringBuilder sb = new StringBuilder();
|
||||
for (int i = 0, count = addresses.length; i < count; i++)
|
||||
{
|
||||
Address address = addresses[i];
|
||||
|
Loading…
Reference in New Issue
Block a user