mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +00:00
Mark PlayerWrapper as final
This package-private class isn't currently extended, so this change makes it not possible to be extended in future. PiperOrigin-RevId: 641270464
This commit is contained in:
parent
3b6175daa7
commit
b1c6d9ff04
1 changed files with 1 additions and 1 deletions
|
|
@ -61,7 +61,7 @@ import java.util.List;
|
||||||
* MediaSession#setPlayer(Player)}. Use this wrapper for extra checks before calling methods and/or
|
* MediaSession#setPlayer(Player)}. Use this wrapper for extra checks before calling methods and/or
|
||||||
* overriding the behavior.
|
* overriding the behavior.
|
||||||
*/
|
*/
|
||||||
/* package */ class PlayerWrapper extends ForwardingPlayer {
|
/* package */ final class PlayerWrapper extends ForwardingPlayer {
|
||||||
|
|
||||||
private static final int STATUS_CODE_SUCCESS_COMPAT = -1;
|
private static final int STATUS_CODE_SUCCESS_COMPAT = -1;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue