Use local Sones in more places where it’s appropriate.
[Sone.git] / src / main / java / net / pterodactylus / sone / database / FriendStore.java
index 38c1c80..b00550f 100644 (file)
@@ -1,5 +1,6 @@
 package net.pterodactylus.sone.database;
 
+import net.pterodactylus.sone.data.LocalSone;
 import net.pterodactylus.sone.data.Sone;
 
 /**
@@ -9,7 +10,7 @@ import net.pterodactylus.sone.data.Sone;
  */
 public interface FriendStore {
 
-       void addFriend(Sone localSone, String friendSoneId);
-       void removeFriend(Sone localSone, String friendSoneId);
+       void addFriend(LocalSone localSone, String friendSoneId);
+       void removeFriend(LocalSone localSone, String friendSoneId);
 
 }