From: David ‘Bombe’ Roden Date: Wed, 13 Apr 2011 18:33:00 +0000 (+0200) Subject: Remove check for now. X-Git-Tag: 0.7^2~2^2~78 X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=commitdiff_plain;h=0491a2dcdc6e6a8021ba9594b1786bdbc8622760;hp=7ec7e133847f7df544123eaa1f541eaff9cd543c Remove check for now. --- diff --git a/src/main/java/net/pterodactylus/sone/data/Album.java b/src/main/java/net/pterodactylus/sone/data/Album.java index ac7e11d..86f2c59 100644 --- a/src/main/java/net/pterodactylus/sone/data/Album.java +++ b/src/main/java/net/pterodactylus/sone/data/Album.java @@ -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; }