Remove unnecessary logging in Utility.attachmentExists

Bug: 3292689
Change-Id: I937ef44b4576634fd870c759a13f3d27255112bd
This commit is contained in:
Marc Blank 2010-12-16 20:07:39 -08:00
parent fdfd466fe6
commit d3fafabd0f

View File

@ -980,12 +980,8 @@ public class Utility {
} else if (attachment.mContentBytes != null) {
return true;
} else if (TextUtils.isEmpty(attachment.mContentUri)) {
Log.w(Email.LOG_TAG, "attachmentExists ContentUri null.");
return false;
}
if (Email.DEBUG) {
Log.d(Email.LOG_TAG, "attachmentExists URI=" + attachment.mContentUri);
}
try {
Uri fileUri = Uri.parse(attachment.mContentUri);
try {