Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 420ad94e authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Remove tags arg from getDocumentMetadata."

parents 9ab38ace aab5d4ce
Loading
Loading
Loading
Loading
+1 −4
Original line number Original line Diff line number Diff line
@@ -46,10 +46,7 @@ final class MetadataLoader extends AsyncTaskLoader<Bundle> {
    @Override
    @Override
    public Bundle loadInBackground() {
    public Bundle loadInBackground() {
        try {
        try {
            return DocumentsContract.getDocumentMetadata(
            return DocumentsContract.getDocumentMetadata(mContext.getContentResolver(), mUri);
                    mContext.getContentResolver(),
                    mUri,
                    null);
        } catch (FileNotFoundException e) {
        } catch (FileNotFoundException e) {
            Log.e(TAG, "Failed to load metadata for doc: " + mUri, e);
            Log.e(TAG, "Failed to load metadata for doc: " + mUri, e);
        }
        }