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

@@ -0,0 +1,12 @@
package ninja.javafx.smartcsv.validation;
/**
* Created by abi on 09.08.2016.
*/
public abstract class EmptyAllowedValidation implements Validation {
@Override
public boolean canBeChecked(String value) {
return value != null && !value.isEmpty();
}
}