Rename method to get the nested albums.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Tue, 11 Jan 2011 05:42:08 +0000 (06:42 +0100)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Tue, 11 Jan 2011 05:42:08 +0000 (06:42 +0100)
src/main/java/net/pterodactylus/sone/data/Album.java

index 60fb296..ca3a97e 100644 (file)
@@ -110,7 +110,7 @@ public class Album implements Fingerprintable {
         *
         * @return The nested albums
         */
-       public List<Album> getNestedAlbums() {
+       public List<Album> getAlbums() {
                return new ArrayList<Album>(albums);
        }