Merge "Remove unnecessary logging in Utility.attachmentExists"

This commit is contained in:
Marc Blank 2010-12-17 10:36:09 -08:00 committed by Android (Google) Code Review
commit f3ced5b8a5

View File

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