mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-24 02:12:15 -05:00
Switch a StringBuffer to StringBuilder, which replaced it
This commit is contained in:
parent
8bf400d2ee
commit
29117ae7a6
@ -195,7 +195,7 @@ public class ImapResponseParser {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private String parseAtom() throws IOException {
|
private String parseAtom() throws IOException {
|
||||||
StringBuffer sb = new StringBuffer();
|
StringBuilder sb = new StringBuilder();
|
||||||
int ch;
|
int ch;
|
||||||
while (true) {
|
while (true) {
|
||||||
ch = mIn.peek();
|
ch = mIn.peek();
|
||||||
|
Loading…
Reference in New Issue
Block a user