1
0
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:
Jesse Vincent 2011-05-24 21:21:03 -04:00
parent 8bf400d2ee
commit 29117ae7a6

View File

@ -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();