File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
libraries/cast/src/main/java/androidx/media3/cast Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 3434import android .view .SurfaceView ;
3535import android .view .TextureView ;
3636import androidx .annotation .IntRange ;
37- import androidx .annotation .NonNull ;
3837import androidx .annotation .Nullable ;
3938import androidx .annotation .RequiresApi ;
4039import androidx .annotation .VisibleForTesting ;
@@ -774,7 +773,7 @@ public void setVolume(float volume) {
774773 this .volume .pendingResultCallback =
775774 new ResultCallback <MediaChannelResult >() {
776775 @ Override
777- public void onResult (@ NonNull MediaChannelResult result ) {
776+ public void onResult (MediaChannelResult result ) {
778777 if (remoteMediaClient != null ) {
779778 updateVolumeAndNotifyIfChanged (this );
780779 listeners .flushEvents ();
@@ -920,7 +919,7 @@ public void setDeviceMuted(boolean muted, @C.VolumeFlags int flags) {
920919 this .deviceMuted .pendingResultCallback =
921920 new ResultCallback <MediaChannelResult >() {
922921 @ Override
923- public void onResult (@ NonNull MediaChannelResult result ) {
922+ public void onResult (MediaChannelResult result ) {
924923 if (remoteMediaClient != null ) {
925924 updateDeviceMutedAndNotifyIfChanged (this );
926925 listeners .flushEvents ();
You can’t perform that action at this time.
0 commit comments