[Java] Update templates not to add @Pattern on byte array property (#7153)

* Update Java templates to skip generating @Pattern on byte array properties

* Revert separator changes

* Revert separator changes
This commit is contained in:
beytun
2020-08-12 08:29:50 +02:00
committed by GitHub
parent 6653cedcc7
commit a1484dac77
28 changed files with 28 additions and 28 deletions

View File

@@ -227,7 +227,7 @@ public class FormatTest {
@ApiModelProperty(required = true, value = "")
@NotNull
@Pattern(regexp="^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$")
public byte[] getByte() {
return _byte;
}