1
0
mirror of https://github.com/moparisthebest/k-9 synced 2025-03-03 01:51:49 -05:00

Removed unnecessary null pointer check.

This commit is contained in:
cketti 2010-04-16 12:48:03 +00:00
parent 57cc4cd735
commit 110a6eb1c7

View File

@ -79,10 +79,7 @@ public class ImapResponseParser
Object token;
while ((token = readToken()) != null)
{
if (response != null)
{
response.add(token);
}
response.add(token);
if (mActiveLiteral != null)
{
break;