Annotate StoredFileHelper.createSAF() as NonNull

This commit is contained in:
TobiGr 2021-06-05 16:34:22 +02:00
parent 7e3b3453c0
commit f583dd47ac
1 changed files with 3 additions and 1 deletions

View File

@ -354,7 +354,9 @@ public class StoredFileHelper implements Serializable {
}
}
private DocumentFile createSAF(@Nullable Context context, String mime, String filename) throws IOException {
@NonNull
private DocumentFile createSAF(@Nullable Context context, String mime, String filename)
throws IOException {
DocumentFile res = StoredDirectoryHelper.findFileSAFHelper(context, docTree, filename);
if (res != null && res.exists() && res.isDirectory()) {