mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-12-22 02:07:10 +00:00
Remove the option to support JDK7 from Java generator and templates (#11547)
* remove java8 from java client generator and templates * update tests * remove threetenbp * update spring templates to remove java8 * remove java8 from jaxrs template * fix jaxrs spec * fix feign * remove CustomInstantDeserializer.java * fix jersey1 * fix undertow * various update * fix jaxrs jersey1 * fix java inflector * fix jaxrs cxf * add new files * update doc
This commit is contained in:
@@ -44,7 +44,7 @@ public class Pet {
|
||||
private String name;
|
||||
|
||||
@JsonbProperty("photoUrls")
|
||||
private List<String> photoUrls = new ArrayList<String>();
|
||||
private List<String> photoUrls = new ArrayList<>();
|
||||
|
||||
@JsonbProperty("tags")
|
||||
private List<Tag> tags = null;
|
||||
|
||||
Reference in New Issue
Block a user