mirror of
https://github.com/moparisthebest/k-9
synced 2025-02-07 10:40:11 -05:00
Renamed parseStatusResponse() to parseResponseText()
This commit is contained in:
parent
727c8564ec
commit
43f5cbb361
@ -73,7 +73,7 @@ public class ImapResponseParser {
|
||||
response.add(firstToken);
|
||||
|
||||
if (isStatusResponse(firstToken)) {
|
||||
parseStatusResponse(response);
|
||||
parseResponseText(response);
|
||||
} else {
|
||||
Object token;
|
||||
while ((token = readToken(response)) != null) {
|
||||
@ -88,7 +88,7 @@ public class ImapResponseParser {
|
||||
response.mCompleted = true;
|
||||
}
|
||||
|
||||
void parseStatusResponse(ImapResponse parent) throws IOException {
|
||||
void parseResponseText(ImapResponse parent) throws IOException {
|
||||
|
||||
skipIfSpace();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user