Fixed a lot of bugs

This commit is contained in:
2015-06-08 11:41:01 +02:00
parent 37b721215c
commit 8766037def
10 changed files with 170 additions and 92 deletions
+14
View File
@@ -0,0 +1,14 @@
package audio.sorting;
import java.util.Comparator;
import audio.Song;
public class SortALPHA implements Comparator<Song> {
@Override
public int compare(Song s1, Song s2) {
return s1.getTitle().compareTo(s2.getTitle());
}
}