Merge branch 'release-0.9.6'
[Sone.git] / src / main / java / net / pterodactylus / sone / data / impl / AbstractPostReplyBuilder.java
index 10bdf76..bd8090f 100644 (file)
@@ -19,8 +19,6 @@ package net.pterodactylus.sone.data.impl;
 
 import static com.google.common.base.Preconditions.checkState;
 
-import org.apache.commons.lang.StringUtils;
-
 import net.pterodactylus.sone.database.PostReplyBuilder;
 
 /**
@@ -58,7 +56,7 @@ public abstract class AbstractPostReplyBuilder extends AbstractReplyBuilder<Post
                checkState((randomId && (id == null)) || (!randomId && (id != null)), "either random ID nor custom ID must be set");
                checkState(senderId != null, "sender must not be null");
                checkState((currentTime && (time == 0)) || (!currentTime && (time >= 0)), "either current time or custom time must be set");
-               checkState(!StringUtils.isBlank(text), "text must not be empty");
+               checkState((text != null) && !text.trim().isEmpty(), "text must not be empty");
                checkState(postId != null, "post must not be null");
        }