Fixed some warnings

This commit is contained in:
cketti 2010-06-20 14:19:01 +00:00
parent d5f53a99e6
commit 4a6b99b647
2 changed files with 0 additions and 5 deletions

View File

@ -82,7 +82,6 @@ public class DomainNameChecker
/**
* @return True iff the domain name is specified as an IP address
*/
@SuppressWarnings("null")
private static boolean isIpAddress(String domain)
{
boolean rval = ((domain != null) && (domain.length() != 0));

View File

@ -4,10 +4,6 @@ package com.fsck.k9.mail;
import java.util.Date;
import java.util.HashSet;
import java.util.Set;
import android.util.Log;
import com.fsck.k9.K9;
import com.fsck.k9.activity.MessageReference;
public abstract class Message implements Part, Body