Skip to content

Commit

Permalink
Make seekTo non-final so it can be overridden
Browse files Browse the repository at this point in the history
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=135930574
  • Loading branch information
LinWuGoogle authored and ojw28 committed Oct 13, 2016
1 parent dd0bd6f commit 29dc2bd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ protected void onEnabled(int track, long positionUs, boolean joining)
}

@Override
protected final void seekTo(long positionUs) throws ExoPlaybackException {
protected void seekTo(long positionUs) throws ExoPlaybackException {
positionUs = shiftInputPosition(positionUs);
enabledSource.seekToUs(positionUs);
checkForDiscontinuity(positionUs);
Expand Down

0 comments on commit 29dc2bd

Please sign in to comment.