Skip to content

Commit

Permalink
refactor: remove unused code & file
Browse files Browse the repository at this point in the history
  • Loading branch information
TedaLIEz committed Feb 14, 2017
1 parent f76313b commit 5d4a9c3
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 83 deletions.
Expand Up @@ -167,7 +167,6 @@ private void createQualityView(@NonNull VideoInfo info) {
void setQuality(@Quality int quality) {
// We need to recreate a instance of player to play another video
// ref: https://github.com/Bilibili/ijkplayer/issues/400
// TODO: 2/13/17 seek to current playing position.
mSeekWhenPrepared = (int) mMediaPlayer.getCurrentPosition();
LogUtil.d(TAG, "current Pos: " + mSeekWhenPrepared);
configurePlayer();
Expand Down Expand Up @@ -755,7 +754,6 @@ public int getDuration() {
@Override
public int getCurrentPosition() {
if (isInPlayBackState()) {
// FIXME: 2/14/17 Different position when reaches end
return (int) mMediaPlayer.getCurrentPosition();
}
return 0;
Expand Down

This file was deleted.

Expand Up @@ -72,9 +72,6 @@ public void write(String filename, String content, LoadingCallback<String> callb
fileService.execute(task);
}

public void read(String filename, LoadingCallback<String> callback) {
// TODO: 2/5/17 Implement read string
}

public void cleanUp() {
cleanupService.submit(cleanupCallable);
Expand Down

0 comments on commit 5d4a9c3

Please sign in to comment.