Return a collection instead of a list for the friends.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Wed, 26 Nov 2014 05:34:15 +0000 (06:34 +0100)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Wed, 26 Nov 2014 05:34:15 +0000 (06:34 +0100)
src/main/java/net/pterodactylus/sone/data/Sone.java
src/main/java/net/pterodactylus/sone/data/impl/SoneImpl.java

index 27f2cb1..04c5f39 100644 (file)
@@ -341,7 +341,7 @@ public interface Sone extends Identified, Fingerprintable, Comparable<Sone> {
         *
         * @return The friend Sones of this Sone
         */
-       List<String> getFriends();
+       Collection<String> getFriends();
 
        /**
         * Returns whether this Sone has the given Sone as a friend Sone.
index b895304..154bfc8 100644 (file)
@@ -339,7 +339,7 @@ public class SoneImpl implements Sone {
         *
         * @return The friend Sones of this Sone
         */
-       public List<String> getFriends() {
+       public Collection<String> getFriends() {
                return new ArrayList<String>(friendSones);
        }