Add @deprecated javadoc to StubExoPlayer#getPlaybackError

This should be inherited from Player#getPlaybackError, but lint still
complains and this seems like the easiest fix.

PiperOrigin-RevId: 342598368
This commit is contained in:
ibaker 2020-11-16 11:13:25 +00:00 committed by Ian Baker
parent ee3eba07ac
commit 41d0c0f882

View file

@ -97,6 +97,7 @@ public abstract class StubExoPlayer extends BasePlayer implements ExoPlayer {
throw new UnsupportedOperationException();
}
/** @deprecated Use {@link #getPlayerError()} instead. */
@Deprecated
@Override
public ExoPlaybackException getPlaybackError() {