1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-24 02:12:15 -05:00

Fix javadoc; make constant all caps.

This commit is contained in:
Andrew Chen 2010-12-29 07:17:43 +00:00
parent cb97c312fc
commit b85f0b64c0

View File

@ -664,17 +664,18 @@ public class Utility
Log.w(K9.LOG_TAG, "cannot delete " + fromDir.getAbsolutePath());
}
}
/**
* Figure out if this part hsa images.
* TODO: should only return true if we're an html part
*/
private static final String IMG_SRC_REGEX = "(?is:<img[^>]+src\\s*=\\s*['\"]?([a-z]+)\\:)";
private static final Pattern mImgPattern = Pattern.compile(IMG_SRC_REGEX);
private static final Pattern IMG_PATTERN = Pattern.compile(IMG_SRC_REGEX);
/**
* Figure out if this part has images.
* TODO: should only return true if we're an html part
* @param message Content to evaluate
* @return True if it has external images; false otherwise.
*/
public static boolean hasExternalImages(final String message)
{
Matcher imgMatches = mImgPattern.matcher(message);
Matcher imgMatches = IMG_PATTERN.matcher(message);
while (imgMatches.find())
{
if (!imgMatches.group(1).equals("content"))
@ -692,7 +693,4 @@ public class Utility
}
return false;
}
}