removed the special treatment of NotEmptyValidation

This commit is contained in:
2016-08-09 17:25:05 +02:00
parent 3ebf78805c
commit b79a20201e
14 changed files with 31 additions and 16 deletions

View File

@@ -30,7 +30,7 @@ import java.util.HashMap;
/**
* Checks if the value is unique in the column
*/
public class UniqueValidation implements Validation {
public class UniqueValidation extends EmptyAllowedValidation {
private HashMap<String, Integer> columnValueMap = new HashMap<>();