Remove redundant length constraint for comment field

This commit is contained in:
Igor Kulikov 2021-11-06 16:42:25 +02:00 committed by GitHub
parent 56be3a935a
commit d511bd22a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -62,7 +62,6 @@ public class OAuth2ClientRegistrationTemplate extends SearchTextBasedWithAdditio
@Length(fieldName = "clientAuthenticationMethod") @Length(fieldName = "clientAuthenticationMethod")
@ApiModelProperty(value = "Default client authentication method to use: 'BASIC' or 'POST'") @ApiModelProperty(value = "Default client authentication method to use: 'BASIC' or 'POST'")
private String clientAuthenticationMethod; private String clientAuthenticationMethod;
@Length(fieldName = "comment")
@ApiModelProperty(value = "Comment for OAuth2 provider") @ApiModelProperty(value = "Comment for OAuth2 provider")
private String comment; private String comment;
@Length(fieldName = "loginButtonIcon") @Length(fieldName = "loginButtonIcon")