fix link text

This commit is contained in:
_Bastler 2021-10-05 21:17:12 +02:00
parent 4a2b8b08bb
commit d07805cd54
1 changed files with 0 additions and 3 deletions

View File

@ -12,14 +12,12 @@ import org.springframework.validation.Validator;
import de.bstly.board.model.Entry;
import de.bstly.board.model.EntryType;
/**
* The Class EntryValidator.
*/
@Component
public class EntryValidator implements Validator {
private UrlValidator urlValidator = new UrlValidator();
/*
@ -44,7 +42,6 @@ public class EntryValidator implements Validator {
if (entry.getEntryType() == null) {
errors.rejectValue("entrytype", "REQUIRED");
} else if (EntryType.LINK.equals(entry.getEntryType())) {
entry.setText(null);
if (!StringUtils.hasText(entry.getUrl())) {
errors.rejectValue("url", "REQUIRED");
}