[Spring] remove deprecated annotation from no-args constructor (#15512)

This commit is contained in:
Oleh Kurpiak 2023-05-15 14:13:18 +03:00 committed by GitHub
parent 66caaf9a33
commit 54cb33c6a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
225 changed files with 0 additions and 1125 deletions

View File

@ -82,11 +82,6 @@ public class {{classname}}{{#parent}} extends {{{parent}}}{{/parent}}{{^parent}}
{{#generatedConstructorWithRequiredArgs}}
{{#hasRequired}}
/**
* Default constructor
* @deprecated Use {@link {{classname}}#{{classname}}({{#requiredVars}}{{{datatypeWithEnum}}}{{^-last}}, {{/-last}}{{/requiredVars}})}
*/
@Deprecated
public {{classname}}() {
super();
}

View File

@ -40,11 +40,6 @@ public class Pet {
@DateTimeFormat(iso = DateTimeFormat.ISO.DATE)
private LocalDate dateOfBirth = LocalDate.parse("2021-01-01");
/**
* Default constructor
* @deprecated Use {@link Pet#Pet(String)}
*/
@Deprecated
public Pet() {
super();
}

View File

@ -79,11 +79,6 @@ public class Pet {
private StatusEnum status;
/**
* Default constructor
* @deprecated Use {@link Pet#Pet(String, List<String>)}
*/
@Deprecated
public Pet() {
super();
}

View File

@ -79,11 +79,6 @@ public class Pet {
private StatusEnum status;
/**
* Default constructor
* @deprecated Use {@link Pet#Pet(String, List<String>)}
*/
@Deprecated
public Pet() {
super();
}

View File

@ -37,11 +37,6 @@ public class Animal {
private String color = "red";
/**
* Default constructor
* @deprecated Use {@link Animal#Animal(String)}
*/
@Deprecated
public Animal() {
super();
}

View File

@ -66,11 +66,6 @@ public class BigCat extends Cat {
private KindEnum kind;
/**
* Default constructor
* @deprecated Use {@link BigCat#BigCat(String)}
*/
@Deprecated
public BigCat() {
super();
}

View File

@ -34,11 +34,6 @@ public class Cat extends Animal {
private Boolean declawed;
/**
* Default constructor
* @deprecated Use {@link Cat#Cat(String)}
*/
@Deprecated
public Cat() {
super();
}

View File

@ -23,11 +23,6 @@ public class Category {
private String name = "default-name";
/**
* Default constructor
* @deprecated Use {@link Category#Category(String)}
*/
@Deprecated
public Category() {
super();
}

View File

@ -36,11 +36,6 @@ public class ContainerDefaultValue {
private JsonNullable<List<String>> nullableArrayWithDefault = JsonNullable.undefined();
/**
* Default constructor
* @deprecated Use {@link ContainerDefaultValue#ContainerDefaultValue(List<String>, List<String>)}
*/
@Deprecated
public ContainerDefaultValue() {
super();
}

View File

@ -26,11 +26,6 @@ public class Dog extends Animal {
private String breed;
/**
* Default constructor
* @deprecated Use {@link Dog#Dog(String)}
*/
@Deprecated
public Dog() {
super();
}

View File

@ -177,11 +177,6 @@ public class EnumTest {
private OuterEnum outerEnum;
/**
* Default constructor
* @deprecated Use {@link EnumTest#EnumTest(EnumStringRequiredEnum)}
*/
@Deprecated
public EnumTest() {
super();
}

View File

@ -57,11 +57,6 @@ public class FormatTest {
private BigDecimal bigDecimal;
/**
* Default constructor
* @deprecated Use {@link FormatTest#FormatTest(BigDecimal, byte[], LocalDate, String)}
*/
@Deprecated
public FormatTest() {
super();
}

View File

@ -27,11 +27,6 @@ public class Name {
private Integer _123number;
/**
* Default constructor
* @deprecated Use {@link Name#Name(Integer)}
*/
@Deprecated
public Name() {
super();
}

View File

@ -78,11 +78,6 @@ public class Pet {
private StatusEnum status;
/**
* Default constructor
* @deprecated Use {@link Pet#Pet(String, Set<String>)}
*/
@Deprecated
public Pet() {
super();
}

View File

@ -33,11 +33,6 @@ public class TypeHolderDefault {
private List<Integer> arrayItem = new ArrayList<>(Arrays.asList(0, 1, 2, 3));
/**
* Default constructor
* @deprecated Use {@link TypeHolderDefault#TypeHolderDefault(String, BigDecimal, Integer, Boolean, List<Integer>)}
*/
@Deprecated
public TypeHolderDefault() {
super();
}

View File

@ -35,11 +35,6 @@ public class TypeHolderExample {
private List<Integer> arrayItem = new ArrayList<>();
/**
* Default constructor
* @deprecated Use {@link TypeHolderExample#TypeHolderExample(String, BigDecimal, Float, Integer, Boolean, List<Integer>)}
*/
@Deprecated
public TypeHolderExample() {
super();
}

View File

@ -78,11 +78,6 @@ public class Pet {
private StatusEnum status;
/**
* Default constructor
* @deprecated Use {@link Pet#Pet(String, List<String>)}
*/
@Deprecated
public Pet() {
super();
}

View File

@ -78,11 +78,6 @@ public class Pet {
private StatusEnum status;
/**
* Default constructor
* @deprecated Use {@link Pet#Pet(String, List<String>)}
*/
@Deprecated
public Pet() {
super();
}

View File

@ -39,11 +39,6 @@ public class Pet {
@DateTimeFormat(iso = DateTimeFormat.ISO.DATE)
private LocalDate dateOfBirth = LocalDate.parse("2021-01-01");
/**
* Default constructor
* @deprecated Use {@link Pet#Pet(String)}
*/
@Deprecated
public Pet() {
super();
}

View File

@ -78,11 +78,6 @@ public class Pet {
private StatusEnum status;
/**
* Default constructor
* @deprecated Use {@link Pet#Pet(String, List<String>)}
*/
@Deprecated
public Pet() {
super();
}

View File

@ -78,11 +78,6 @@ public class Pet {
private StatusEnum status;
/**
* Default constructor
* @deprecated Use {@link Pet#Pet(String, List<String>)}
*/
@Deprecated
public Pet() {
super();
}

View File

@ -78,11 +78,6 @@ public class Pet {
private StatusEnum status;
/**
* Default constructor
* @deprecated Use {@link Pet#Pet(String, List<String>)}
*/
@Deprecated
public Pet() {
super();
}

View File

@ -78,11 +78,6 @@ public class Pet {
private StatusEnum status;
/**
* Default constructor
* @deprecated Use {@link Pet#Pet(String, List<String>)}
*/
@Deprecated
public Pet() {
super();
}

View File

@ -35,11 +35,6 @@ public class Bar extends Entity implements BarRefOrValue {
private FooRefOrValue foo;
/**
* Default constructor
* @deprecated Use {@link Bar#Bar(String, String)}
*/
@Deprecated
public Bar() {
super();
}

View File

@ -35,11 +35,6 @@ public class BarCreate extends Entity {
private FooRefOrValue foo;
/**
* Default constructor
* @deprecated Use {@link BarCreate#BarCreate(String)}
*/
@Deprecated
public BarCreate() {
super();
}

View File

@ -26,11 +26,6 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
public class BarRef extends EntityRef implements BarRefOrValue {
/**
* Default constructor
* @deprecated Use {@link BarRef#BarRef(String)}
*/
@Deprecated
public BarRef() {
super();
}

View File

@ -48,11 +48,6 @@ public class Entity {
private String atType;
/**
* Default constructor
* @deprecated Use {@link Entity#Entity(String)}
*/
@Deprecated
public Entity() {
super();
}

View File

@ -49,11 +49,6 @@ public class EntityRef {
private String atType;
/**
* Default constructor
* @deprecated Use {@link EntityRef#EntityRef(String)}
*/
@Deprecated
public EntityRef() {
super();
}

View File

@ -27,11 +27,6 @@ public class Extensible {
private String atType;
/**
* Default constructor
* @deprecated Use {@link Extensible#Extensible(String)}
*/
@Deprecated
public Extensible() {
super();
}

View File

@ -30,11 +30,6 @@ public class Foo extends Entity implements FooRefOrValue {
private String fooPropB;
/**
* Default constructor
* @deprecated Use {@link Foo#Foo(String)}
*/
@Deprecated
public Foo() {
super();
}

View File

@ -28,11 +28,6 @@ public class FooRef extends EntityRef implements FooRefOrValue {
private String foorefPropA;
/**
* Default constructor
* @deprecated Use {@link FooRef#FooRef(String)}
*/
@Deprecated
public FooRef() {
super();
}

View File

@ -28,11 +28,6 @@ public class Pasta extends Entity {
private String vendor;
/**
* Default constructor
* @deprecated Use {@link Pasta#Pasta(String)}
*/
@Deprecated
public Pasta() {
super();
}

View File

@ -37,11 +37,6 @@ public class Pizza extends Entity {
private BigDecimal pizzaSize;
/**
* Default constructor
* @deprecated Use {@link Pizza#Pizza(String)}
*/
@Deprecated
public Pizza() {
super();
}

View File

@ -29,11 +29,6 @@ public class PizzaSpeziale extends Pizza {
private String toppings;
/**
* Default constructor
* @deprecated Use {@link PizzaSpeziale#PizzaSpeziale(String)}
*/
@Deprecated
public PizzaSpeziale() {
super();
}

View File

@ -78,11 +78,6 @@ public class Pet {
private StatusEnum status;
/**
* Default constructor
* @deprecated Use {@link Pet#Pet(String, List<String>)}
*/
@Deprecated
public Pet() {
super();
}

View File

@ -78,11 +78,6 @@ public class Pet {
private StatusEnum status;
/**
* Default constructor
* @deprecated Use {@link Pet#Pet(String, List<String>)}
*/
@Deprecated
public Pet() {
super();
}

View File

@ -39,11 +39,6 @@ public class Animal {
private String color = "red";
/**
* Default constructor
* @deprecated Use {@link Animal#Animal(String)}
*/
@Deprecated
public Animal() {
super();
}

View File

@ -68,11 +68,6 @@ public class BigCat extends Cat {
private KindEnum kind;
/**
* Default constructor
* @deprecated Use {@link BigCat#BigCat(String)}
*/
@Deprecated
public BigCat() {
super();
}

View File

@ -36,11 +36,6 @@ public class Cat extends Animal {
private Boolean declawed;
/**
* Default constructor
* @deprecated Use {@link Cat#Cat(String)}
*/
@Deprecated
public Cat() {
super();
}

View File

@ -25,11 +25,6 @@ public class Category {
private String name = "default-name";
/**
* Default constructor
* @deprecated Use {@link Category#Category(String)}
*/
@Deprecated
public Category() {
super();
}

View File

@ -38,11 +38,6 @@ public class ContainerDefaultValue {
@Valid
private JsonNullable<List<String>> nullableArrayWithDefault = JsonNullable.undefined();
/**
* Default constructor
* @deprecated Use {@link ContainerDefaultValue#ContainerDefaultValue(List<String>, List<String>)}
*/
@Deprecated
public ContainerDefaultValue() {
super();
}

View File

@ -28,11 +28,6 @@ public class Dog extends Animal {
private String breed;
/**
* Default constructor
* @deprecated Use {@link Dog#Dog(String)}
*/
@Deprecated
public Dog() {
super();
}

View File

@ -179,11 +179,6 @@ public class EnumTest {
private OuterEnum outerEnum;
/**
* Default constructor
* @deprecated Use {@link EnumTest#EnumTest(EnumStringRequiredEnum)}
*/
@Deprecated
public EnumTest() {
super();
}

View File

@ -59,11 +59,6 @@ public class FormatTest {
private BigDecimal bigDecimal;
/**
* Default constructor
* @deprecated Use {@link FormatTest#FormatTest(BigDecimal, byte[], LocalDate, String)}
*/
@Deprecated
public FormatTest() {
super();
}

View File

@ -30,11 +30,6 @@ public class Name {
private Integer _123number;
/**
* Default constructor
* @deprecated Use {@link Name#Name(Integer)}
*/
@Deprecated
public Name() {
super();
}

View File

@ -80,11 +80,6 @@ public class Pet {
private StatusEnum status;
/**
* Default constructor
* @deprecated Use {@link Pet#Pet(String, Set<String>)}
*/
@Deprecated
public Pet() {
super();
}

View File

@ -35,11 +35,6 @@ public class TypeHolderDefault {
@Valid
private List<Integer> arrayItem = new ArrayList<>(Arrays.asList(0, 1, 2, 3));
/**
* Default constructor
* @deprecated Use {@link TypeHolderDefault#TypeHolderDefault(String, BigDecimal, Integer, Boolean, List<Integer>)}
*/
@Deprecated
public TypeHolderDefault() {
super();
}

View File

@ -37,11 +37,6 @@ public class TypeHolderExample {
@Valid
private List<Integer> arrayItem = new ArrayList<>();
/**
* Default constructor
* @deprecated Use {@link TypeHolderExample#TypeHolderExample(String, BigDecimal, Float, Integer, Boolean, List<Integer>)}
*/
@Deprecated
public TypeHolderExample() {
super();
}

View File

@ -39,11 +39,6 @@ public class Animal {
private String color = "red";
/**
* Default constructor
* @deprecated Use {@link Animal#Animal(String)}
*/
@Deprecated
public Animal() {
super();
}

View File

@ -68,11 +68,6 @@ public class BigCat extends Cat {
private KindEnum kind;
/**
* Default constructor
* @deprecated Use {@link BigCat#BigCat(String)}
*/
@Deprecated
public BigCat() {
super();
}

View File

@ -36,11 +36,6 @@ public class Cat extends Animal {
private Boolean declawed;
/**
* Default constructor
* @deprecated Use {@link Cat#Cat(String)}
*/
@Deprecated
public Cat() {
super();
}

View File

@ -25,11 +25,6 @@ public class Category {
private String name = "default-name";
/**
* Default constructor
* @deprecated Use {@link Category#Category(String)}
*/
@Deprecated
public Category() {
super();
}

View File

@ -38,11 +38,6 @@ public class ContainerDefaultValue {
@Valid
private JsonNullable<List<String>> nullableArrayWithDefault = JsonNullable.undefined();
/**
* Default constructor
* @deprecated Use {@link ContainerDefaultValue#ContainerDefaultValue(List<String>, List<String>)}
*/
@Deprecated
public ContainerDefaultValue() {
super();
}

View File

@ -28,11 +28,6 @@ public class Dog extends Animal {
private String breed;
/**
* Default constructor
* @deprecated Use {@link Dog#Dog(String)}
*/
@Deprecated
public Dog() {
super();
}

View File

@ -179,11 +179,6 @@ public class EnumTest {
private OuterEnum outerEnum;
/**
* Default constructor
* @deprecated Use {@link EnumTest#EnumTest(EnumStringRequiredEnum)}
*/
@Deprecated
public EnumTest() {
super();
}

View File

@ -59,11 +59,6 @@ public class FormatTest {
private BigDecimal bigDecimal;
/**
* Default constructor
* @deprecated Use {@link FormatTest#FormatTest(BigDecimal, byte[], LocalDate, String)}
*/
@Deprecated
public FormatTest() {
super();
}

View File

@ -30,11 +30,6 @@ public class Name {
private Integer _123number;
/**
* Default constructor
* @deprecated Use {@link Name#Name(Integer)}
*/
@Deprecated
public Name() {
super();
}

View File

@ -80,11 +80,6 @@ public class Pet {
private StatusEnum status;
/**
* Default constructor
* @deprecated Use {@link Pet#Pet(String, Set<String>)}
*/
@Deprecated
public Pet() {
super();
}

View File

@ -35,11 +35,6 @@ public class TypeHolderDefault {
@Valid
private List<Integer> arrayItem = new ArrayList<>(Arrays.asList(0, 1, 2, 3));
/**
* Default constructor
* @deprecated Use {@link TypeHolderDefault#TypeHolderDefault(String, BigDecimal, Integer, Boolean, List<Integer>)}
*/
@Deprecated
public TypeHolderDefault() {
super();
}

View File

@ -37,11 +37,6 @@ public class TypeHolderExample {
@Valid
private List<Integer> arrayItem = new ArrayList<>();
/**
* Default constructor
* @deprecated Use {@link TypeHolderExample#TypeHolderExample(String, BigDecimal, Float, Integer, Boolean, List<Integer>)}
*/
@Deprecated
public TypeHolderExample() {
super();
}

View File

@ -76,11 +76,6 @@ public class Pet {
private StatusEnum status;
/**
* Default constructor
* @deprecated Use {@link Pet#Pet(String, List<String>)}
*/
@Deprecated
public Pet() {
super();
}

View File

@ -78,11 +78,6 @@ public class Pet {
private StatusEnum status;
/**
* Default constructor
* @deprecated Use {@link Pet#Pet(String, List<String>)}
*/
@Deprecated
public Pet() {
super();
}

View File

@ -92,11 +92,6 @@ public class Pet {
@JacksonXmlProperty(localName = "status")
private StatusEnum status;
/**
* Default constructor
* @deprecated Use {@link Pet#Pet(String, List<String>)}
*/
@Deprecated
public Pet() {
super();
}

View File

@ -39,11 +39,6 @@ public class Animal {
private String color = "red";
/**
* Default constructor
* @deprecated Use {@link Animal#Animal(String)}
*/
@Deprecated
public Animal() {
super();
}

View File

@ -68,11 +68,6 @@ public class BigCat extends Cat {
private KindEnum kind;
/**
* Default constructor
* @deprecated Use {@link BigCat#BigCat(String)}
*/
@Deprecated
public BigCat() {
super();
}

View File

@ -36,11 +36,6 @@ public class Cat extends Animal {
private Boolean declawed;
/**
* Default constructor
* @deprecated Use {@link Cat#Cat(String)}
*/
@Deprecated
public Cat() {
super();
}

View File

@ -25,11 +25,6 @@ public class Category {
private String name = "default-name";
/**
* Default constructor
* @deprecated Use {@link Category#Category(String)}
*/
@Deprecated
public Category() {
super();
}

View File

@ -38,11 +38,6 @@ public class ContainerDefaultValue {
@Valid
private JsonNullable<List<String>> nullableArrayWithDefault = JsonNullable.undefined();
/**
* Default constructor
* @deprecated Use {@link ContainerDefaultValue#ContainerDefaultValue(List<String>, List<String>)}
*/
@Deprecated
public ContainerDefaultValue() {
super();
}

View File

@ -28,11 +28,6 @@ public class Dog extends Animal {
private String breed;
/**
* Default constructor
* @deprecated Use {@link Dog#Dog(String)}
*/
@Deprecated
public Dog() {
super();
}

View File

@ -179,11 +179,6 @@ public class EnumTest {
private OuterEnum outerEnum;
/**
* Default constructor
* @deprecated Use {@link EnumTest#EnumTest(EnumStringRequiredEnum)}
*/
@Deprecated
public EnumTest() {
super();
}

View File

@ -59,11 +59,6 @@ public class FormatTest {
private BigDecimal bigDecimal;
/**
* Default constructor
* @deprecated Use {@link FormatTest#FormatTest(BigDecimal, byte[], LocalDate, String)}
*/
@Deprecated
public FormatTest() {
super();
}

View File

@ -30,11 +30,6 @@ public class Name {
private Integer _123number;
/**
* Default constructor
* @deprecated Use {@link Name#Name(Integer)}
*/
@Deprecated
public Name() {
super();
}

View File

@ -80,11 +80,6 @@ public class Pet {
private StatusEnum status;
/**
* Default constructor
* @deprecated Use {@link Pet#Pet(String, Set<String>)}
*/
@Deprecated
public Pet() {
super();
}

View File

@ -35,11 +35,6 @@ public class TypeHolderDefault {
@Valid
private List<Integer> arrayItem = new ArrayList<>(Arrays.asList(0, 1, 2, 3));
/**
* Default constructor
* @deprecated Use {@link TypeHolderDefault#TypeHolderDefault(String, BigDecimal, Integer, Boolean, List<Integer>)}
*/
@Deprecated
public TypeHolderDefault() {
super();
}

View File

@ -37,11 +37,6 @@ public class TypeHolderExample {
@Valid
private List<Integer> arrayItem = new ArrayList<>();
/**
* Default constructor
* @deprecated Use {@link TypeHolderExample#TypeHolderExample(String, BigDecimal, Float, Integer, Boolean, List<Integer>)}
*/
@Deprecated
public TypeHolderExample() {
super();
}

View File

@ -39,11 +39,6 @@ public class Animal {
private String color = "red";
/**
* Default constructor
* @deprecated Use {@link Animal#Animal(String)}
*/
@Deprecated
public Animal() {
super();
}

View File

@ -68,11 +68,6 @@ public class BigCat extends Cat {
private KindEnum kind;
/**
* Default constructor
* @deprecated Use {@link BigCat#BigCat(String)}
*/
@Deprecated
public BigCat() {
super();
}

View File

@ -36,11 +36,6 @@ public class Cat extends Animal {
private Boolean declawed;
/**
* Default constructor
* @deprecated Use {@link Cat#Cat(String)}
*/
@Deprecated
public Cat() {
super();
}

View File

@ -25,11 +25,6 @@ public class Category {
private String name = "default-name";
/**
* Default constructor
* @deprecated Use {@link Category#Category(String)}
*/
@Deprecated
public Category() {
super();
}

View File

@ -35,11 +35,6 @@ public class ContainerDefaultValue {
@Valid
private List<String> nullableArrayWithDefault = new ArrayList<>(Arrays.asList("foo", "bar"));
/**
* Default constructor
* @deprecated Use {@link ContainerDefaultValue#ContainerDefaultValue(List<String>, List<String>)}
*/
@Deprecated
public ContainerDefaultValue() {
super();
}

View File

@ -28,11 +28,6 @@ public class Dog extends Animal {
private String breed;
/**
* Default constructor
* @deprecated Use {@link Dog#Dog(String)}
*/
@Deprecated
public Dog() {
super();
}

View File

@ -179,11 +179,6 @@ public class EnumTest {
private OuterEnum outerEnum;
/**
* Default constructor
* @deprecated Use {@link EnumTest#EnumTest(EnumStringRequiredEnum)}
*/
@Deprecated
public EnumTest() {
super();
}

View File

@ -59,11 +59,6 @@ public class FormatTest {
private BigDecimal bigDecimal;
/**
* Default constructor
* @deprecated Use {@link FormatTest#FormatTest(BigDecimal, byte[], LocalDate, String)}
*/
@Deprecated
public FormatTest() {
super();
}

View File

@ -30,11 +30,6 @@ public class Name {
private Integer _123number;
/**
* Default constructor
* @deprecated Use {@link Name#Name(Integer)}
*/
@Deprecated
public Name() {
super();
}

View File

@ -80,11 +80,6 @@ public class Pet {
private StatusEnum status;
/**
* Default constructor
* @deprecated Use {@link Pet#Pet(String, Set<String>)}
*/
@Deprecated
public Pet() {
super();
}

View File

@ -35,11 +35,6 @@ public class TypeHolderDefault {
@Valid
private List<Integer> arrayItem = new ArrayList<>(Arrays.asList(0, 1, 2, 3));
/**
* Default constructor
* @deprecated Use {@link TypeHolderDefault#TypeHolderDefault(String, BigDecimal, Integer, Boolean, List<Integer>)}
*/
@Deprecated
public TypeHolderDefault() {
super();
}

View File

@ -37,11 +37,6 @@ public class TypeHolderExample {
@Valid
private List<Integer> arrayItem = new ArrayList<>();
/**
* Default constructor
* @deprecated Use {@link TypeHolderExample#TypeHolderExample(String, BigDecimal, Float, Integer, Boolean, List<Integer>)}
*/
@Deprecated
public TypeHolderExample() {
super();
}

View File

@ -40,11 +40,6 @@ public class Animal {
private String color = "red";
/**
* Default constructor
* @deprecated Use {@link Animal#Animal(String)}
*/
@Deprecated
public Animal() {
super();
}

View File

@ -69,11 +69,6 @@ public class BigCat extends Cat {
private KindEnum kind;
/**
* Default constructor
* @deprecated Use {@link BigCat#BigCat(String)}
*/
@Deprecated
public BigCat() {
super();
}

View File

@ -37,11 +37,6 @@ public class Cat extends Animal {
private Boolean declawed;
/**
* Default constructor
* @deprecated Use {@link Cat#Cat(String)}
*/
@Deprecated
public Cat() {
super();
}

View File

@ -26,11 +26,6 @@ public class Category {
private String name = "default-name";
/**
* Default constructor
* @deprecated Use {@link Category#Category(String)}
*/
@Deprecated
public Category() {
super();
}

View File

@ -39,11 +39,6 @@ public class ContainerDefaultValue {
@Valid
private JsonNullable<List<String>> nullableArrayWithDefault = JsonNullable.undefined();
/**
* Default constructor
* @deprecated Use {@link ContainerDefaultValue#ContainerDefaultValue(List<String>, List<String>)}
*/
@Deprecated
public ContainerDefaultValue() {
super();
}

View File

@ -29,11 +29,6 @@ public class Dog extends Animal {
private String breed;
/**
* Default constructor
* @deprecated Use {@link Dog#Dog(String)}
*/
@Deprecated
public Dog() {
super();
}

View File

@ -180,11 +180,6 @@ public class EnumTest {
private OuterEnum outerEnum;
/**
* Default constructor
* @deprecated Use {@link EnumTest#EnumTest(EnumStringRequiredEnum)}
*/
@Deprecated
public EnumTest() {
super();
}

View File

@ -60,11 +60,6 @@ public class FormatTest {
private BigDecimal bigDecimal;
/**
* Default constructor
* @deprecated Use {@link FormatTest#FormatTest(BigDecimal, byte[], LocalDate, String)}
*/
@Deprecated
public FormatTest() {
super();
}

View File

@ -31,11 +31,6 @@ public class Name {
private Integer _123number;
/**
* Default constructor
* @deprecated Use {@link Name#Name(Integer)}
*/
@Deprecated
public Name() {
super();
}

View File

@ -81,11 +81,6 @@ public class Pet {
private StatusEnum status;
/**
* Default constructor
* @deprecated Use {@link Pet#Pet(String, Set<String>)}
*/
@Deprecated
public Pet() {
super();
}

View File

@ -36,11 +36,6 @@ public class TypeHolderDefault {
@Valid
private List<Integer> arrayItem = new ArrayList<>(Arrays.asList(0, 1, 2, 3));
/**
* Default constructor
* @deprecated Use {@link TypeHolderDefault#TypeHolderDefault(String, BigDecimal, Integer, Boolean, List<Integer>)}
*/
@Deprecated
public TypeHolderDefault() {
super();
}

View File

@ -38,11 +38,6 @@ public class TypeHolderExample {
@Valid
private List<Integer> arrayItem = new ArrayList<>();
/**
* Default constructor
* @deprecated Use {@link TypeHolderExample#TypeHolderExample(String, BigDecimal, Float, Integer, Boolean, List<Integer>)}
*/
@Deprecated
public TypeHolderExample() {
super();
}

View File

@ -40,11 +40,6 @@ public class Animal {
private String color = "red";
/**
* Default constructor
* @deprecated Use {@link Animal#Animal(String)}
*/
@Deprecated
public Animal() {
super();
}

Some files were not shown because too many files have changed in this diff Show More