📄 Update year in file headers
[Sone.git] / src / main / java / net / pterodactylus / sone / data / impl / AbstractPostReplyBuilder.java
index 952a94e..8dffdcd 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Sone - AbstractPostReplyBuilder.java - Copyright Â© 2013 David Roden
+ * Sone - AbstractPostReplyBuilder.java - Copyright Â© 2013–2020 David Roden
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -19,16 +19,12 @@ 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;
 
 /**
  * Abstract {@link PostReplyBuilder} implementation. It stores the state of the
  * new post and performs validation, implementations only need to implement
  * {@link #build()}.
- *
- * @author <a href="mailto:bombe@pterodactylus.net">David â€˜Bombe’ Roden</a>
  */
 public abstract class AbstractPostReplyBuilder extends AbstractReplyBuilder<PostReplyBuilder> implements PostReplyBuilder {
 
@@ -58,7 +54,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");
        }