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

Commit fe66a2b3 authored by Felipe Leme's avatar Felipe Leme Committed by android-build-merger
Browse files

Merge "Removed obsolete @NonNull." into nyc-dev am: 657c2fa5

am: 8127d6f0

* commit '8127d6f0':
  Removed obsolete @NonNull.
parents e183c04f 8127d6f0
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -16,7 +16,6 @@

package android.os.storage;

import android.annotation.NonNull;
import android.annotation.Nullable;
import android.content.Context;
import android.content.Intent;
@@ -336,7 +335,7 @@ public final class StorageVolume implements Parcelable {
     *
     * @see DocumentsContract
     */
    public Intent createAccessIntent(@NonNull String directoryName) {
    public Intent createAccessIntent(String directoryName) {
        final Intent intent = new Intent(ACTION_OPEN_EXTERNAL_DIRECTORY);
        intent.putExtra(EXTRA_STORAGE_VOLUME, this);
        intent.putExtra(EXTRA_DIRECTORY_NAME, directoryName);