Remove unnecessary logging in Utility.attachmentExists
Bug: 3292689 Change-Id: I937ef44b4576634fd870c759a13f3d27255112bd
This commit is contained in:
parent
fdfd466fe6
commit
d3fafabd0f
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user