mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +00:00
Change type of setCustomLayout in MediaSession.resultBuilder to List
PiperOrigin-RevId: 600801528
This commit is contained in:
parent
9448f939f4
commit
1f78aa5b2a
1 changed files with 2 additions and 3 deletions
|
|
@ -1651,9 +1651,8 @@ public class MediaSession {
|
||||||
* session commands}.
|
* session commands}.
|
||||||
*/
|
*/
|
||||||
@CanIgnoreReturnValue
|
@CanIgnoreReturnValue
|
||||||
public AcceptedResultBuilder setCustomLayout(
|
public AcceptedResultBuilder setCustomLayout(@Nullable List<CommandButton> customLayout) {
|
||||||
@Nullable ImmutableList<CommandButton> customLayout) {
|
this.customLayout = customLayout == null ? null : ImmutableList.copyOf(customLayout);
|
||||||
this.customLayout = customLayout;
|
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue