fix bug.
parent
315ff1950f
commit
25ec5577cc
|
@ -119,11 +119,11 @@ public class StringValidator<DTO> extends BasePropertyValidator<DTO, String, Str
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
for (int i = 0; i < cs.length(); i++) {
|
for (int i = 0; i < cs.length(); i++) {
|
||||||
if (Character.isWhitespace(cs.charAt(i))) {
|
if (!Character.isWhitespace(cs.charAt(i))) {
|
||||||
return false;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return true;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
public StringValidator<DTO> notBlank() {
|
public StringValidator<DTO> notBlank() {
|
||||||
|
|
Loading…
Reference in New Issue