Skip to content

Commit e81c319

Browse files
marcbaechingerMGaetan89
authored andcommitted
remove redundant @nonnull annotation
1 parent b25c0c3 commit e81c319

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

libraries/cast/src/main/java/androidx/media3/cast/CastPlayer.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@
3535
import android.view.SurfaceView;
3636
import android.view.TextureView;
3737
import androidx.annotation.IntRange;
38-
import androidx.annotation.NonNull;
3938
import androidx.annotation.Nullable;
4039
import androidx.annotation.RequiresApi;
4140
import androidx.annotation.VisibleForTesting;
@@ -798,7 +797,7 @@ public void setVolume(float volume) {
798797
this.volume.pendingResultCallback =
799798
new ResultCallback<MediaChannelResult>() {
800799
@Override
801-
public void onResult(@NonNull MediaChannelResult result) {
800+
public void onResult(MediaChannelResult result) {
802801
if (remoteMediaClient != null) {
803802
updateVolumeAndNotifyIfChanged(this);
804803
listeners.flushEvents();

0 commit comments

Comments
 (0)