HHH-11737 - Fix xcheckstyle error

This commit is contained in:
Andrea Boriero 2017-05-11 06:50:39 -05:00
parent f9aa6e6d2e
commit eb819faa8c
1 changed files with 6 additions and 5 deletions

View File

@ -83,11 +83,12 @@ public class AuditProperty<T> implements AuditProjection {
return new IlikeAuditExpression( alias, propertyNameGetter, value.toString() );
}
/**
* Apply an "ilike" constraint
* @deprecated since 5.2, use {@link #ilike(String, MatchMode)}. To be removed in 6.0.
*/
@Deprecated
/**
* Apply an "ilike" constraint
*
* @deprecated since 5.2, use {@link #ilike(String, MatchMode)}. To be removed in 6.0.
*/
@Deprecated
public AuditCriterion ilike(String value, org.hibernate.criterion.MatchMode matchMode) {
return new IlikeAuditExpression( alias, propertyNameGetter, matchMode.toMatchString( value ) );
}