Loading src/com/android/documentsui/inspector/MetadataLoader.java +1 −4 Original line number Original line Diff line number Diff line Loading @@ -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); } } Loading Loading
src/com/android/documentsui/inspector/MetadataLoader.java +1 −4 Original line number Original line Diff line number Diff line Loading @@ -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); } } Loading