mirror of
https://github.com/frosch95/SmartCSV.fx.git
synced 2026-04-12 14:08:23 +02:00
removed the special treatment of NotEmptyValidation
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user