fixed the imports of the new validation classes

This commit is contained in:
Andreas Billmann
2016-09-18 15:18:48 +02:00
parent d689423c61
commit 5e31f834ac
6 changed files with 9 additions and 9 deletions

View File

@@ -27,8 +27,6 @@ package ninja.javafx.smartcsv.validation.checker;
import ninja.javafx.smartcsv.validation.ValidationError;
import java.net.URI;
import java.net.URISyntaxException;
import java.util.UUID;
/**
@@ -47,6 +45,6 @@ public class UuidValidation extends EmptyValueIsValid {
@Override
public Type getType() {
return Type.UUID;
return Type.STRING;
}
}