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
1 changed files with 1 additions and 1 deletions

View File

@ -195,7 +195,7 @@ public class ImapResponseParser {
}
private String parseAtom() throws IOException {
StringBuffer sb = new StringBuffer();
StringBuilder sb = new StringBuilder();
int ch;
while (true) {
ch = mIn.peek();