We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
PlayerControlView
1 parent e797a1f commit a3bef49Copy full SHA for a3bef49
libraries/ui/src/main/java/androidx/media3/ui/PlayerControlView.java
@@ -929,7 +929,7 @@ public void setExtraAdGroupMarkers(
929
this.extraAdGroupTimesMs = new long[0];
930
this.extraPlayedAdGroups = new boolean[0];
931
} else {
932
- extraPlayedAdGroups = checkNotNull(extraPlayedAdGroups);
+ checkNotNull(extraPlayedAdGroups);
933
Assertions.checkArgument(extraAdGroupTimesMs.length == extraPlayedAdGroups.length);
934
this.extraAdGroupTimesMs = extraAdGroupTimesMs;
935
this.extraPlayedAdGroups = extraPlayedAdGroups;
0 commit comments