X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fdata%2FAlbum.java;h=e8efb59a9b4012d7c9d477ccdac710f57f28cdd8;hp=df514d44313e1c9dc64e3b8aafc8c44dd07d77e0;hb=31a732a2e18008ea65a31a4e8180c337458b2df9;hpb=84e3f241029a4a0a63069a0a793b4f09408d3ca6 diff --git a/src/main/java/net/pterodactylus/sone/data/Album.java b/src/main/java/net/pterodactylus/sone/data/Album.java index df514d4..e8efb59 100644 --- a/src/main/java/net/pterodactylus/sone/data/Album.java +++ b/src/main/java/net/pterodactylus/sone/data/Album.java @@ -128,28 +128,6 @@ public interface Album extends Identified, Fingerprintable { List getImages(); /** - * Moves the given image up in this album’s images. If the image is already the - * first image, nothing happens. - * - * @param image - * The image to move up - * @return The image that the given image swapped the place with, or - * null if the image did not change its place - */ - Image moveImageUp(Image image); - - /** - * Moves the given image down in this album’s images. If the image is already - * the last image, nothing happens. - * - * @param image - * The image to move down - * @return The image that the given image swapped the place with, or - * null if the image did not change its place - */ - Image moveImageDown(Image image); - - /** * Returns the album image of this album, or {@code null} if no album image has * been set. *