[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
225 changed files with 0 additions and 1125 deletions

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();
}