Code rearanged

This commit is contained in:
Karim Abou Zeid 2015-03-23 22:41:10 +01:00
commit 6aaf926ff7
27 changed files with 107 additions and 158 deletions

View file

@ -171,7 +171,7 @@ public class PlaylistsUtil {
context.getContentResolver().update(MediaStore.Audio.Playlists.EXTERNAL_CONTENT_URI,
contentValues,
MediaStore.Audio.Playlists._ID + "=?",
new String[]{ String.valueOf(id) });
new String[]{String.valueOf(id)});
App.bus.post(new DataBaseChangedEvent(DataBaseChangedEvent.PLAYLISTS_CHANGED));
}

View file

@ -15,12 +15,14 @@ import android.provider.MediaStore;
/**
* Holds all of the sort orders for each list type.
*
*
* @author Andrew Neal (andrewdneal@gmail.com)
*/
public final class SortOrder {
/** This class is never instantiated */
/**
* This class is never instantiated
*/
public SortOrder() {
}