diff options
author | Scott Jackson <daneren2005@gmail.com> | 2014-12-27 11:55:12 -0800 |
---|---|---|
committer | Scott Jackson <daneren2005@gmail.com> | 2014-12-27 11:55:12 -0800 |
commit | 1b12fed0c03a957ce5ef98fd39a282b210f5100e (patch) | |
tree | 1e44b51e3a109bf54468646a21fb030555fca5b2 | |
parent | 47b05d6aecc9ed309b85d300d023052bac743893 (diff) | |
download | dsub-1b12fed0c03a957ce5ef98fd39a282b210f5100e.tar.gz dsub-1b12fed0c03a957ce5ef98fd39a282b210f5100e.tar.bz2 dsub-1b12fed0c03a957ce5ef98fd39a282b210f5100e.zip |
Sleep didn't do any good
-rw-r--r-- | src/github/daneren2005/dsub/service/DownloadService.java | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/github/daneren2005/dsub/service/DownloadService.java b/src/github/daneren2005/dsub/service/DownloadService.java index 6caf5c58..3f643593 100644 --- a/src/github/daneren2005/dsub/service/DownloadService.java +++ b/src/github/daneren2005/dsub/service/DownloadService.java @@ -1523,8 +1523,6 @@ public class DownloadService extends Service { synchronized (DownloadService.this) { if (position != 0) { - Util.sleepQuietly(10); - Log.i(TAG, "Restarting player from position " + position); mediaPlayer.seekTo(position); } |