diff options
author | Scott Jackson <daneren2005@gmail.com> | 2014-09-25 14:24:35 -0700 |
---|---|---|
committer | Scott Jackson <daneren2005@gmail.com> | 2014-09-25 14:24:35 -0700 |
commit | fe4cdf93e7836b7964fcf95a3da02f78eac6212b (patch) | |
tree | 4af33970de768bc750a965a0f239880b41ab209e /src | |
parent | 8d52a48c1fb5f9c4dbe427a0a21c2e1ef62a42db (diff) | |
download | dsub-fe4cdf93e7836b7964fcf95a3da02f78eac6212b.tar.gz dsub-fe4cdf93e7836b7964fcf95a3da02f78eac6212b.tar.bz2 dsub-fe4cdf93e7836b7964fcf95a3da02f78eac6212b.zip |
Change state parts to public for use by widget provider
Diffstat (limited to 'src')
-rw-r--r-- | src/github/daneren2005/dsub/service/DownloadServiceLifecycleSupport.java | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/github/daneren2005/dsub/service/DownloadServiceLifecycleSupport.java b/src/github/daneren2005/dsub/service/DownloadServiceLifecycleSupport.java index 668ca70a..8e9db735 100644 --- a/src/github/daneren2005/dsub/service/DownloadServiceLifecycleSupport.java +++ b/src/github/daneren2005/dsub/service/DownloadServiceLifecycleSupport.java @@ -47,9 +47,8 @@ import github.daneren2005.dsub.util.Util; * @author Sindre Mehus */ public class DownloadServiceLifecycleSupport { - private static final String TAG = DownloadServiceLifecycleSupport.class.getSimpleName(); - private static final String FILENAME_DOWNLOADS_SER = "downloadstate2.ser"; + public static final String FILENAME_DOWNLOADS_SER = "downloadstate2.ser"; private final DownloadService downloadService; private Looper eventLooper; @@ -359,7 +358,7 @@ public class DownloadServiceLifecycleSupport { } } - private static class State implements Serializable { + public static class State implements Serializable { private static final long serialVersionUID = -6346438781062572271L; private List<MusicDirectory.Entry> songs = new ArrayList<MusicDirectory.Entry>(); |