diff options
author | Scott Jackson <daneren2005@gmail.com> | 2013-01-21 20:04:06 -0800 |
---|---|---|
committer | Scott Jackson <daneren2005@gmail.com> | 2013-01-21 20:04:06 -0800 |
commit | 128715219e0fe41662d52a1ed926501fda0090ae (patch) | |
tree | 0a36fdbc5b12abe9d7daf299c77bd1b6dd3f4a5f /subsonic-android | |
parent | c1cec1751a6b476cae29379be249c88d667eef6d (diff) | |
download | dsub-128715219e0fe41662d52a1ed926501fda0090ae.tar.gz dsub-128715219e0fe41662d52a1ed926501fda0090ae.tar.bz2 dsub-128715219e0fe41662d52a1ed926501fda0090ae.zip |
Forgot to remove Log.d
Diffstat (limited to 'subsonic-android')
-rw-r--r-- | subsonic-android/src/github/daneren2005/dsub/view/AlbumView.java | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/subsonic-android/src/github/daneren2005/dsub/view/AlbumView.java b/subsonic-android/src/github/daneren2005/dsub/view/AlbumView.java index 1f3681ec..ff6eb71b 100644 --- a/subsonic-android/src/github/daneren2005/dsub/view/AlbumView.java +++ b/subsonic-android/src/github/daneren2005/dsub/view/AlbumView.java @@ -84,7 +84,6 @@ public class AlbumView extends UpdateView { protected void update() { starButton.setVisibility((Util.isOffline(getContext()) || !album.isStarred()) ? View.GONE : View.VISIBLE); File file = FileUtil.getAlbumDirectory(context, album); - Log.d(TAG, file.getPath()); if(file.exists()) { moreButton.setImageResource(R.drawable.list_item_more_shaded); } else { |