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:
ibaker 2021-07-02 17:32:24 +01:00 committed by kim-vde
parent 6e43ea97e7
commit ee426822ee

View File

@ -28,7 +28,7 @@ public abstract class BasePlayer implements Player {
protected final Timeline.Window window;
public BasePlayer() {
protected BasePlayer() {
window = new Timeline.Window();
}