rename annotation name

This commit is contained in:
Albert Shift 2015-06-08 21:52:18 -07:00
parent 3966640694
commit 7e87bce918

View file

@ -57,7 +57,7 @@ public final class Constraints {
}
/**
* NotEmptyText annotation is using to check that value has text before storing it
* NotEmpty annotation is using to check that value has text before storing it
*
* Can be used only for @java.lang.CharSequence
*
@ -68,7 +68,7 @@ public final class Constraints {
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target(value = { ElementType.METHOD, ElementType.ANNOTATION_TYPE })
public @interface NotEmptyText {
public @interface NotEmpty {
}