Remove self @link

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=177938212
This commit is contained in:
olly 2017-12-05 04:21:18 -08:00 committed by Oliver Woodman
parent f2f767bc12
commit 2b31723434

View file

@ -873,15 +873,15 @@ public class SimpleExoPlayer implements ExoPlayer {
// Internal methods. // Internal methods.
/** /**
* Creates the ExoPlayer implementation used by this {@link SimpleExoPlayer}. * Creates the {@link ExoPlayer} implementation used by this instance.
* *
* @param renderers The {@link Renderer}s that will be used by the instance. * @param renderers The {@link Renderer}s that will be used by the instance.
* @param trackSelector The {@link TrackSelector} that will be used by the instance. * @param trackSelector The {@link TrackSelector} that will be used by the instance.
* @param loadControl The {@link LoadControl} that will be used by the instance. * @param loadControl The {@link LoadControl} that will be used by the instance.
* @return A new {@link ExoPlayer} instance. * @return A new {@link ExoPlayer} instance.
*/ */
protected ExoPlayer createExoPlayerImpl(Renderer[] renderers, TrackSelector trackSelector, protected ExoPlayer createExoPlayerImpl(
LoadControl loadControl) { Renderer[] renderers, TrackSelector trackSelector, LoadControl loadControl) {
return new ExoPlayerImpl(renderers, trackSelector, loadControl); return new ExoPlayerImpl(renderers, trackSelector, loadControl);
} }