Remove check for now.
[Sone.git] / src / main / java / net / pterodactylus / sone / data / Album.java
index ac7e11d..86f2c59 100644 (file)
@@ -103,7 +103,7 @@ public class Album implements Fingerprintable {
         * @return This album
         */
        public Album setSone(Sone sone) {
-               Validation.begin().isNull("Current Album Owner", this.sone).isNotNull("New Album Owner", sone).check();
+               Validation.begin().isNotNull("New Album Owner", sone).check();
                this.sone = sone;
                return this;
        }