diff options
-rw-r--r-- | Playlist.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Playlist.java b/Playlist.java index 0bf55fd..990aa26 100644 --- a/Playlist.java +++ b/Playlist.java @@ -16,7 +16,7 @@ public class Playlist implements Serializable { } public int getId(){return id;} - public String getName(){return name.toUpperCase();} + public String getName(){return name.toUpperCase();} //using toUpperCase method because the way I sort by name sort he upper case then the lower case, which is inconvenient. public ArrayList<Song> getSongs(){return songs;} public ArrayList<AudioBook> getAudioBooks(){return audiobooks;} |