Removed the "hide bottom bar" feature.

This commit is contained in:
Karim Abou Zeid 2015-10-18 18:25:38 +02:00
commit 4e24bc0404
4 changed files with 0 additions and 21 deletions

View file

@ -59,8 +59,6 @@ public final class PreferenceUtil {
public static final String IGNORE_MEDIA_STORE_ARTWORK = "ignore_media_store_artwork";
public static final String HIDE_BOTTOM_BAR = "hide_bottom_bar";
public static final String LAST_CHANGELOG_VERSION = "last_changelog_version";
private static PreferenceUtil sInstance;
@ -201,10 +199,6 @@ public final class PreferenceUtil {
return mPreferences.getBoolean(IGNORE_MEDIA_STORE_ARTWORK, false);
}
public final boolean hideBottomBar() {
return mPreferences.getBoolean(HIDE_BOTTOM_BAR, false);
}
public final String getArtistSortOrder() {
return mPreferences.getString(ARTIST_SORT_ORDER, SortOrder.ArtistSortOrder.ARTIST_A_Z);
}