File tree 1 file changed +2
-3
lines changed
libraries/cast/src/main/java/androidx/media3/cast
1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 34
34
import android .view .SurfaceView ;
35
35
import android .view .TextureView ;
36
36
import androidx .annotation .IntRange ;
37
- import androidx .annotation .NonNull ;
38
37
import androidx .annotation .Nullable ;
39
38
import androidx .annotation .RequiresApi ;
40
39
import androidx .annotation .VisibleForTesting ;
@@ -774,7 +773,7 @@ public void setVolume(float volume) {
774
773
this .volume .pendingResultCallback =
775
774
new ResultCallback <MediaChannelResult >() {
776
775
@ Override
777
- public void onResult (@ NonNull MediaChannelResult result ) {
776
+ public void onResult (MediaChannelResult result ) {
778
777
if (remoteMediaClient != null ) {
779
778
updateVolumeAndNotifyIfChanged (this );
780
779
listeners .flushEvents ();
@@ -920,7 +919,7 @@ public void setDeviceMuted(boolean muted, @C.VolumeFlags int flags) {
920
919
this .deviceMuted .pendingResultCallback =
921
920
new ResultCallback <MediaChannelResult >() {
922
921
@ Override
923
- public void onResult (@ NonNull MediaChannelResult result ) {
922
+ public void onResult (MediaChannelResult result ) {
924
923
if (remoteMediaClient != null ) {
925
924
updateDeviceMutedAndNotifyIfChanged (this );
926
925
listeners .flushEvents ();
You can’t perform that action at this time.
0 commit comments