Skip to content

Commit

Permalink
Remove annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
alemart committed Jan 12, 2024
1 parent 26a1a89 commit b4a6cfe
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ public void onActivityResult(int requestCode, int resultCode, Intent resultData)
close(null);
}

private void close(/*@Nullable*/ Uri[] result)
private void close(Uri[] result)
{
// store the result, which is null or an array of content:// URIs
resultUri = result;
Expand All @@ -494,7 +494,7 @@ private void close(/*@Nullable*/ Uri[] result)
signal.countDown();
}

private void reallyOpen(Activity activity, int flags, String[] mimeTypes, /*@Nullable*/ Uri initialUri) throws RuntimeException
private void reallyOpen(Activity activity, int flags, String[] mimeTypes, Uri initialUri) throws RuntimeException
{
if (Build.VERSION.SDK_INT < 19)
throw new UnsupportedOperationException("Unsupported operation in API level " + Build.VERSION.SDK_INT);
Expand Down

0 comments on commit b4a6cfe

Please sign in to comment.