mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-05 22:55:41 +13:00
AppDataDocumentProvider: Allow to remove documents
This commit is contained in:
parent
b286537b69
commit
dc6dd3bb64
1 changed files with 5 additions and 0 deletions
|
@ -158,6 +158,11 @@ public class AppDataDocumentProvider extends DocumentsProvider {
|
|||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void removeDocument(String documentId, String parentDocumentId) {
|
||||
deleteDocument(documentId);
|
||||
}
|
||||
|
||||
@Override
|
||||
public ParcelFileDescriptor openDocument(String documentId, String mode, @Nullable CancellationSignal signal) throws FileNotFoundException {
|
||||
return ParcelFileDescriptor.open(obtainFile(documentId), ParcelFileDescriptor.parseMode(mode));
|
||||
|
|
Loading…
Add table
Reference in a new issue