From fe4cdf93e7836b7964fcf95a3da02f78eac6212b Mon Sep 17 00:00:00 2001 From: Scott Jackson Date: Thu, 25 Sep 2014 14:24:35 -0700 Subject: Change state parts to public for use by widget provider --- .../daneren2005/dsub/service/DownloadServiceLifecycleSupport.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/github/daneren2005') 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 songs = new ArrayList(); -- cgit v1.2.3