mirror of
https://github.com/samsonjs/media.git
synced 2026-03-25 09:25:53 +00:00
Mark BasePlayer constructor as protected
This is an abstract class so it can only be constructed from the context of a subclass anyway. PiperOrigin-RevId: 382756293
This commit is contained in:
parent
6e43ea97e7
commit
ee426822ee
1 changed files with 1 additions and 1 deletions
|
|
@ -28,7 +28,7 @@ public abstract class BasePlayer implements Player {
|
|||
|
||||
protected final Timeline.Window window;
|
||||
|
||||
public BasePlayer() {
|
||||
protected BasePlayer() {
|
||||
window = new Timeline.Window();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue