Replace reply-specific interfaces with Kotlin versions
[Sone.git] / src / main / java / net / pterodactylus / sone / database / BookmarkDatabase.java
index dbcdb84..6eb9c38 100644 (file)
@@ -11,7 +11,6 @@ import net.pterodactylus.sone.data.Post;
  */
 public interface BookmarkDatabase {
 
-       void bookmarkPost(String postId); // FIXME – remove me
        void bookmarkPost(Post post);
        void unbookmarkPost(Post post);
        boolean isPostBookmarked(Post post);