[JAVA] Okhttp-gson: blank line between annotations and method signature (#15430)

* Remove extra blank line

* Regenerate samples
This commit is contained in:
Beppe Catanese
2023-05-08 08:39:46 +02:00
committed by GitHub
parent b4eb7071e4
commit 3d2ec72461
187 changed files with 1 additions and 612 deletions

View File

@@ -249,8 +249,7 @@ public class {{classname}} {{#parent}}extends {{{.}}} {{/parent}}{{#vendorExtens
{{!unannotated, Jackson would pick this up automatically and add it *in addition* to the _JsonNullable getter field}}
@JsonIgnore
{{/vendorExtensions.x-is-jackson-optional-nullable}}
{{^vendorExtensions.x-is-jackson-optional-nullable}}{{#jackson}}{{> jackson_annotations}}{{/jackson}}{{/vendorExtensions.x-is-jackson-optional-nullable}}
public {{{datatypeWithEnum}}} {{getter}}() {
{{^vendorExtensions.x-is-jackson-optional-nullable}}{{#jackson}}{{> jackson_annotations}}{{/jackson}}{{/vendorExtensions.x-is-jackson-optional-nullable}} public {{{datatypeWithEnum}}} {{getter}}() {
{{#vendorExtensions.x-is-jackson-optional-nullable}}
{{#isReadOnly}}{{! A readonly attribute doesn't have setter => jackson will set null directly if explicitly returned by API, so make sure we have an empty JsonNullable}}
if ({{name}} == null) {

View File

@@ -74,7 +74,6 @@ public class Bird {
* @return size
**/
@javax.annotation.Nullable
public String getSize() {
return size;
}
@@ -96,7 +95,6 @@ public class Bird {
* @return color
**/
@javax.annotation.Nullable
public String getColor() {
return color;
}

View File

@@ -74,7 +74,6 @@ public class Category {
* @return id
**/
@javax.annotation.Nullable
public Long getId() {
return id;
}
@@ -96,7 +95,6 @@ public class Category {
* @return name
**/
@javax.annotation.Nullable
public String getName() {
return name;
}

View File

@@ -82,7 +82,6 @@ public class DataQuery extends Query {
* @return suffix
**/
@javax.annotation.Nullable
public String getSuffix() {
return suffix;
}
@@ -104,7 +103,6 @@ public class DataQuery extends Query {
* @return text
**/
@javax.annotation.Nullable
public String getText() {
return text;
}
@@ -126,7 +124,6 @@ public class DataQuery extends Query {
* @return date
**/
@javax.annotation.Nullable
public OffsetDateTime getDate() {
return date;
}

View File

@@ -79,7 +79,6 @@ public class DataQueryAllOf {
* @return suffix
**/
@javax.annotation.Nullable
public String getSuffix() {
return suffix;
}
@@ -101,7 +100,6 @@ public class DataQueryAllOf {
* @return text
**/
@javax.annotation.Nullable
public String getText() {
return text;
}
@@ -123,7 +121,6 @@ public class DataQueryAllOf {
* @return date
**/
@javax.annotation.Nullable
public OffsetDateTime getDate() {
return date;
}

View File

@@ -159,7 +159,6 @@ public class DefaultValue {
* @return arrayStringEnumRefDefault
**/
@javax.annotation.Nullable
public List<StringEnumRef> getArrayStringEnumRefDefault() {
return arrayStringEnumRefDefault;
}
@@ -189,7 +188,6 @@ public class DefaultValue {
* @return arrayStringEnumDefault
**/
@javax.annotation.Nullable
public List<ArrayStringEnumDefaultEnum> getArrayStringEnumDefault() {
return arrayStringEnumDefault;
}
@@ -219,7 +217,6 @@ public class DefaultValue {
* @return arrayStringDefault
**/
@javax.annotation.Nullable
public List<String> getArrayStringDefault() {
return arrayStringDefault;
}
@@ -249,7 +246,6 @@ public class DefaultValue {
* @return arrayIntegerDefault
**/
@javax.annotation.Nullable
public List<Integer> getArrayIntegerDefault() {
return arrayIntegerDefault;
}
@@ -279,7 +275,6 @@ public class DefaultValue {
* @return arrayString
**/
@javax.annotation.Nullable
public List<String> getArrayString() {
return arrayString;
}
@@ -309,7 +304,6 @@ public class DefaultValue {
* @return arrayStringNullable
**/
@javax.annotation.Nullable
public List<String> getArrayStringNullable() {
return arrayStringNullable;
}
@@ -339,7 +333,6 @@ public class DefaultValue {
* @return arrayStringExtensionNullable
**/
@javax.annotation.Nullable
public List<String> getArrayStringExtensionNullable() {
return arrayStringExtensionNullable;
}
@@ -361,7 +354,6 @@ public class DefaultValue {
* @return stringNullable
**/
@javax.annotation.Nullable
public String getStringNullable() {
return stringNullable;
}

View File

@@ -79,7 +79,6 @@ public class NumberPropertiesOnly {
* @return number
**/
@javax.annotation.Nullable
public BigDecimal getNumber() {
return number;
}
@@ -101,7 +100,6 @@ public class NumberPropertiesOnly {
* @return _float
**/
@javax.annotation.Nullable
public Float getFloat() {
return _float;
}
@@ -125,7 +123,6 @@ public class NumberPropertiesOnly {
* @return _double
**/
@javax.annotation.Nullable
public Double getDouble() {
return _double;
}

View File

@@ -143,7 +143,6 @@ public class Pet {
* @return id
**/
@javax.annotation.Nullable
public Long getId() {
return id;
}
@@ -165,7 +164,6 @@ public class Pet {
* @return name
**/
@javax.annotation.Nonnull
public String getName() {
return name;
}
@@ -187,7 +185,6 @@ public class Pet {
* @return category
**/
@javax.annotation.Nullable
public Category getCategory() {
return category;
}
@@ -217,7 +214,6 @@ public class Pet {
* @return photoUrls
**/
@javax.annotation.Nonnull
public List<String> getPhotoUrls() {
return photoUrls;
}
@@ -247,7 +243,6 @@ public class Pet {
* @return tags
**/
@javax.annotation.Nullable
public List<Tag> getTags() {
return tags;
}
@@ -269,7 +264,6 @@ public class Pet {
* @return status
**/
@javax.annotation.Nullable
public StatusEnum getStatus() {
return status;
}

View File

@@ -125,7 +125,6 @@ public class Query {
* @return id
**/
@javax.annotation.Nullable
public Long getId() {
return id;
}
@@ -155,7 +154,6 @@ public class Query {
* @return outcomes
**/
@javax.annotation.Nullable
public List<OutcomesEnum> getOutcomes() {
return outcomes;
}

View File

@@ -74,7 +74,6 @@ public class Tag {
* @return id
**/
@javax.annotation.Nullable
public Long getId() {
return id;
}
@@ -96,7 +95,6 @@ public class Tag {
* @return name
**/
@javax.annotation.Nullable
public String getName() {
return name;
}

View File

@@ -82,7 +82,6 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter
* @return size
**/
@javax.annotation.Nullable
public String getSize() {
return size;
}
@@ -104,7 +103,6 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter
* @return color
**/
@javax.annotation.Nullable
public String getColor() {
return color;
}
@@ -126,7 +124,6 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter
* @return id
**/
@javax.annotation.Nullable
public Long getId() {
return id;
}
@@ -148,7 +145,6 @@ public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter
* @return name
**/
@javax.annotation.Nullable
public String getName() {
return name;
}

View File

@@ -80,7 +80,6 @@ public class TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter {
* @return values
**/
@javax.annotation.Nullable
public List<String> getValues() {
return values;
}

View File

@@ -131,7 +131,6 @@ public class SomeObj {
* @return $type
**/
@javax.annotation.Nullable
public TypeEnum get$Type() {
return $type;
}
@@ -153,7 +152,6 @@ public class SomeObj {
* @return id
**/
@javax.annotation.Nullable
public Long getId() {
return id;
}
@@ -175,7 +173,6 @@ public class SomeObj {
* @return name
**/
@javax.annotation.Nullable
public String getName() {
return name;
}
@@ -197,7 +194,6 @@ public class SomeObj {
* @return active
**/
@javax.annotation.Nullable
public Boolean getActive() {
return active;
}
@@ -219,7 +215,6 @@ public class SomeObj {
* @return type
**/
@javax.annotation.Nullable
public String getType() {
return type;
}

View File

@@ -74,7 +74,6 @@ public class Category {
* @return id
**/
@javax.annotation.Nullable
public Long getId() {
return id;
}
@@ -96,7 +95,6 @@ public class Category {
* @return name
**/
@javax.annotation.Nullable
public String getName() {
return name;
}

View File

@@ -78,7 +78,6 @@ public class ModelApiResponse {
* @return code
**/
@javax.annotation.Nullable
public Integer getCode() {
return code;
}
@@ -100,7 +99,6 @@ public class ModelApiResponse {
* @return type
**/
@javax.annotation.Nullable
public String getType() {
return type;
}
@@ -122,7 +120,6 @@ public class ModelApiResponse {
* @return message
**/
@javax.annotation.Nullable
public String getMessage() {
return message;
}

View File

@@ -140,7 +140,6 @@ public class Order {
* @return id
**/
@javax.annotation.Nullable
public Long getId() {
return id;
}
@@ -162,7 +161,6 @@ public class Order {
* @return petId
**/
@javax.annotation.Nullable
public Long getPetId() {
return petId;
}
@@ -184,7 +182,6 @@ public class Order {
* @return quantity
**/
@javax.annotation.Nullable
public Integer getQuantity() {
return quantity;
}
@@ -206,7 +203,6 @@ public class Order {
* @return shipDate
**/
@javax.annotation.Nullable
public OffsetDateTime getShipDate() {
return shipDate;
}
@@ -228,7 +224,6 @@ public class Order {
* @return status
**/
@javax.annotation.Nullable
public StatusEnum getStatus() {
return status;
}
@@ -250,7 +245,6 @@ public class Order {
* @return complete
**/
@javax.annotation.Nullable
public Boolean getComplete() {
return complete;
}

View File

@@ -144,7 +144,6 @@ public class Pet {
* @return id
**/
@javax.annotation.Nullable
public Long getId() {
return id;
}
@@ -166,7 +165,6 @@ public class Pet {
* @return category
**/
@javax.annotation.Nullable
public Category getCategory() {
return category;
}
@@ -188,7 +186,6 @@ public class Pet {
* @return name
**/
@javax.annotation.Nonnull
public String getName() {
return name;
}
@@ -218,7 +215,6 @@ public class Pet {
* @return photoUrls
**/
@javax.annotation.Nonnull
public List<String> getPhotoUrls() {
return photoUrls;
}
@@ -248,7 +244,6 @@ public class Pet {
* @return tags
**/
@javax.annotation.Nullable
public List<Tag> getTags() {
return tags;
}
@@ -273,7 +268,6 @@ public class Pet {
**/
@Deprecated
@javax.annotation.Nullable
public StatusEnum getStatus() {
return status;
}

View File

@@ -74,7 +74,6 @@ public class Tag {
* @return id
**/
@javax.annotation.Nullable
public Long getId() {
return id;
}
@@ -96,7 +95,6 @@ public class Tag {
* @return name
**/
@javax.annotation.Nullable
public String getName() {
return name;
}

View File

@@ -98,7 +98,6 @@ public class User {
* @return id
**/
@javax.annotation.Nullable
public Long getId() {
return id;
}
@@ -120,7 +119,6 @@ public class User {
* @return username
**/
@javax.annotation.Nullable
public String getUsername() {
return username;
}
@@ -142,7 +140,6 @@ public class User {
* @return firstName
**/
@javax.annotation.Nullable
public String getFirstName() {
return firstName;
}
@@ -164,7 +161,6 @@ public class User {
* @return lastName
**/
@javax.annotation.Nullable
public String getLastName() {
return lastName;
}
@@ -186,7 +182,6 @@ public class User {
* @return email
**/
@javax.annotation.Nullable
public String getEmail() {
return email;
}
@@ -208,7 +203,6 @@ public class User {
* @return password
**/
@javax.annotation.Nullable
public String getPassword() {
return password;
}
@@ -230,7 +224,6 @@ public class User {
* @return phone
**/
@javax.annotation.Nullable
public String getPhone() {
return phone;
}
@@ -252,7 +245,6 @@ public class User {
* @return userStatus
**/
@javax.annotation.Nullable
public Integer getUserStatus() {
return userStatus;
}

View File

@@ -70,7 +70,6 @@ public class AdditionalPropertiesAnyType {
* @return name
**/
@javax.annotation.Nullable
public String getName() {
return name;
}

View File

@@ -71,7 +71,6 @@ public class AdditionalPropertiesArray {
* @return name
**/
@javax.annotation.Nullable
public String getName() {
return name;
}

View File

@@ -70,7 +70,6 @@ public class AdditionalPropertiesBoolean {
* @return name
**/
@javax.annotation.Nullable
public String getName() {
return name;
}

View File

@@ -122,7 +122,6 @@ public class AdditionalPropertiesClass {
* @return mapString
**/
@javax.annotation.Nullable
public Map<String, String> getMapString() {
return mapString;
}
@@ -152,7 +151,6 @@ public class AdditionalPropertiesClass {
* @return mapNumber
**/
@javax.annotation.Nullable
public Map<String, BigDecimal> getMapNumber() {
return mapNumber;
}
@@ -182,7 +180,6 @@ public class AdditionalPropertiesClass {
* @return mapInteger
**/
@javax.annotation.Nullable
public Map<String, Integer> getMapInteger() {
return mapInteger;
}
@@ -212,7 +209,6 @@ public class AdditionalPropertiesClass {
* @return mapBoolean
**/
@javax.annotation.Nullable
public Map<String, Boolean> getMapBoolean() {
return mapBoolean;
}
@@ -242,7 +238,6 @@ public class AdditionalPropertiesClass {
* @return mapArrayInteger
**/
@javax.annotation.Nullable
public Map<String, List<Integer>> getMapArrayInteger() {
return mapArrayInteger;
}
@@ -272,7 +267,6 @@ public class AdditionalPropertiesClass {
* @return mapArrayAnytype
**/
@javax.annotation.Nullable
public Map<String, List<Object>> getMapArrayAnytype() {
return mapArrayAnytype;
}
@@ -302,7 +296,6 @@ public class AdditionalPropertiesClass {
* @return mapMapString
**/
@javax.annotation.Nullable
public Map<String, Map<String, String>> getMapMapString() {
return mapMapString;
}
@@ -332,7 +325,6 @@ public class AdditionalPropertiesClass {
* @return mapMapAnytype
**/
@javax.annotation.Nullable
public Map<String, Map<String, Object>> getMapMapAnytype() {
return mapMapAnytype;
}
@@ -354,7 +346,6 @@ public class AdditionalPropertiesClass {
* @return anytype1
**/
@javax.annotation.Nullable
public Object getAnytype1() {
return anytype1;
}
@@ -376,7 +367,6 @@ public class AdditionalPropertiesClass {
* @return anytype2
**/
@javax.annotation.Nullable
public Object getAnytype2() {
return anytype2;
}
@@ -398,7 +388,6 @@ public class AdditionalPropertiesClass {
* @return anytype3
**/
@javax.annotation.Nullable
public Object getAnytype3() {
return anytype3;
}

View File

@@ -70,7 +70,6 @@ public class AdditionalPropertiesInteger {
* @return name
**/
@javax.annotation.Nullable
public String getName() {
return name;
}

View File

@@ -71,7 +71,6 @@ public class AdditionalPropertiesNumber {
* @return name
**/
@javax.annotation.Nullable
public String getName() {
return name;
}

View File

@@ -71,7 +71,6 @@ public class AdditionalPropertiesObject {
* @return name
**/
@javax.annotation.Nullable
public String getName() {
return name;
}

View File

@@ -70,7 +70,6 @@ public class AdditionalPropertiesString {
* @return name
**/
@javax.annotation.Nullable
public String getName() {
return name;
}

View File

@@ -75,7 +75,6 @@ public class Animal {
* @return className
**/
@javax.annotation.Nonnull
public String getClassName() {
return className;
}
@@ -97,7 +96,6 @@ public class Animal {
* @return color
**/
@javax.annotation.Nullable
public String getColor() {
return color;
}

View File

@@ -81,7 +81,6 @@ public class ArrayOfArrayOfNumberOnly {
* @return arrayArrayNumber
**/
@javax.annotation.Nullable
public List<List<BigDecimal>> getArrayArrayNumber() {
return arrayArrayNumber;
}

View File

@@ -81,7 +81,6 @@ public class ArrayOfNumberOnly {
* @return arrayNumber
**/
@javax.annotation.Nullable
public List<BigDecimal> getArrayNumber() {
return arrayNumber;
}

View File

@@ -89,7 +89,6 @@ public class ArrayTest {
* @return arrayOfString
**/
@javax.annotation.Nullable
public List<String> getArrayOfString() {
return arrayOfString;
}
@@ -119,7 +118,6 @@ public class ArrayTest {
* @return arrayArrayOfInteger
**/
@javax.annotation.Nullable
public List<List<Long>> getArrayArrayOfInteger() {
return arrayArrayOfInteger;
}
@@ -149,7 +147,6 @@ public class ArrayTest {
* @return arrayArrayOfModel
**/
@javax.annotation.Nullable
public List<List<ReadOnlyFirst>> getArrayArrayOfModel() {
return arrayArrayOfModel;
}

View File

@@ -123,7 +123,6 @@ public class BigCat extends Cat {
* @return kind
**/
@javax.annotation.Nullable
public KindEnum getKind() {
return kind;
}

View File

@@ -121,7 +121,6 @@ public class BigCatAllOf {
* @return kind
**/
@javax.annotation.Nullable
public KindEnum getKind() {
return kind;
}

View File

@@ -90,7 +90,6 @@ public class Capitalization {
* @return smallCamel
**/
@javax.annotation.Nullable
public String getSmallCamel() {
return smallCamel;
}
@@ -112,7 +111,6 @@ public class Capitalization {
* @return capitalCamel
**/
@javax.annotation.Nullable
public String getCapitalCamel() {
return capitalCamel;
}
@@ -134,7 +132,6 @@ public class Capitalization {
* @return smallSnake
**/
@javax.annotation.Nullable
public String getSmallSnake() {
return smallSnake;
}
@@ -156,7 +153,6 @@ public class Capitalization {
* @return capitalSnake
**/
@javax.annotation.Nullable
public String getCapitalSnake() {
return capitalSnake;
}
@@ -178,7 +174,6 @@ public class Capitalization {
* @return scAETHFlowPoints
**/
@javax.annotation.Nullable
public String getScAETHFlowPoints() {
return scAETHFlowPoints;
}
@@ -200,7 +195,6 @@ public class Capitalization {
* @return ATT_NAME
**/
@javax.annotation.Nullable
public String getATTNAME() {
return ATT_NAME;
}

View File

@@ -72,7 +72,6 @@ public class Cat extends Animal {
* @return declawed
**/
@javax.annotation.Nullable
public Boolean getDeclawed() {
return declawed;
}

View File

@@ -70,7 +70,6 @@ public class CatAllOf {
* @return declawed
**/
@javax.annotation.Nullable
public Boolean getDeclawed() {
return declawed;
}

View File

@@ -74,7 +74,6 @@ public class Category {
* @return id
**/
@javax.annotation.Nullable
public Long getId() {
return id;
}
@@ -96,7 +95,6 @@ public class Category {
* @return name
**/
@javax.annotation.Nonnull
public String getName() {
return name;
}

View File

@@ -70,7 +70,6 @@ public class ClassModel {
* @return propertyClass
**/
@javax.annotation.Nullable
public String getPropertyClass() {
return propertyClass;
}

View File

@@ -70,7 +70,6 @@ public class Client {
* @return client
**/
@javax.annotation.Nullable
public String getClient() {
return client;
}

View File

@@ -72,7 +72,6 @@ public class Dog extends Animal {
* @return breed
**/
@javax.annotation.Nullable
public String getBreed() {
return breed;
}

View File

@@ -70,7 +70,6 @@ public class DogAllOf {
* @return breed
**/
@javax.annotation.Nullable
public String getBreed() {
return breed;
}

View File

@@ -170,7 +170,6 @@ public class EnumArrays {
* @return justSymbol
**/
@javax.annotation.Nullable
public JustSymbolEnum getJustSymbol() {
return justSymbol;
}
@@ -200,7 +199,6 @@ public class EnumArrays {
* @return arrayEnum
**/
@javax.annotation.Nullable
public List<ArrayEnumEnum> getArrayEnum() {
return arrayEnum;
}

View File

@@ -279,7 +279,6 @@ public class EnumTest {
* @return enumString
**/
@javax.annotation.Nullable
public EnumStringEnum getEnumString() {
return enumString;
}
@@ -301,7 +300,6 @@ public class EnumTest {
* @return enumStringRequired
**/
@javax.annotation.Nonnull
public EnumStringRequiredEnum getEnumStringRequired() {
return enumStringRequired;
}
@@ -323,7 +321,6 @@ public class EnumTest {
* @return enumInteger
**/
@javax.annotation.Nullable
public EnumIntegerEnum getEnumInteger() {
return enumInteger;
}
@@ -345,7 +342,6 @@ public class EnumTest {
* @return enumNumber
**/
@javax.annotation.Nullable
public EnumNumberEnum getEnumNumber() {
return enumNumber;
}
@@ -367,7 +363,6 @@ public class EnumTest {
* @return outerEnum
**/
@javax.annotation.Nullable
public OuterEnum getOuterEnum() {
return outerEnum;
}

View File

@@ -77,7 +77,6 @@ public class FileSchemaTestClass {
* @return _file
**/
@javax.annotation.Nullable
public ModelFile getFile() {
return _file;
}
@@ -107,7 +106,6 @@ public class FileSchemaTestClass {
* @return files
**/
@javax.annotation.Nullable
public List<ModelFile> getFiles() {
return files;
}

View File

@@ -129,7 +129,6 @@ public class FormatTest {
* @return integer
**/
@javax.annotation.Nullable
public Integer getInteger() {
return integer;
}
@@ -153,7 +152,6 @@ public class FormatTest {
* @return int32
**/
@javax.annotation.Nullable
public Integer getInt32() {
return int32;
}
@@ -175,7 +173,6 @@ public class FormatTest {
* @return int64
**/
@javax.annotation.Nullable
public Long getInt64() {
return int64;
}
@@ -199,7 +196,6 @@ public class FormatTest {
* @return number
**/
@javax.annotation.Nonnull
public BigDecimal getNumber() {
return number;
}
@@ -223,7 +219,6 @@ public class FormatTest {
* @return _float
**/
@javax.annotation.Nullable
public Float getFloat() {
return _float;
}
@@ -247,7 +242,6 @@ public class FormatTest {
* @return _double
**/
@javax.annotation.Nullable
public Double getDouble() {
return _double;
}
@@ -269,7 +263,6 @@ public class FormatTest {
* @return string
**/
@javax.annotation.Nullable
public String getString() {
return string;
}
@@ -291,7 +284,6 @@ public class FormatTest {
* @return _byte
**/
@javax.annotation.Nonnull
public byte[] getByte() {
return _byte;
}
@@ -313,7 +305,6 @@ public class FormatTest {
* @return binary
**/
@javax.annotation.Nullable
public File getBinary() {
return binary;
}
@@ -335,7 +326,6 @@ public class FormatTest {
* @return date
**/
@javax.annotation.Nonnull
public LocalDate getDate() {
return date;
}
@@ -357,7 +347,6 @@ public class FormatTest {
* @return dateTime
**/
@javax.annotation.Nullable
public OffsetDateTime getDateTime() {
return dateTime;
}
@@ -379,7 +368,6 @@ public class FormatTest {
* @return uuid
**/
@javax.annotation.Nullable
public UUID getUuid() {
return uuid;
}
@@ -401,7 +389,6 @@ public class FormatTest {
* @return password
**/
@javax.annotation.Nonnull
public String getPassword() {
return password;
}
@@ -423,7 +410,6 @@ public class FormatTest {
* @return bigDecimal
**/
@javax.annotation.Nullable
public BigDecimal getBigDecimal() {
return bigDecimal;
}

View File

@@ -78,7 +78,6 @@ public class HasOnlyReadOnly {
* @return bar
**/
@javax.annotation.Nullable
public String getBar() {
return bar;
}
@@ -91,7 +90,6 @@ public class HasOnlyReadOnly {
* @return foo
**/
@javax.annotation.Nullable
public String getFoo() {
return foo;
}

View File

@@ -139,7 +139,6 @@ public class MapTest {
* @return mapMapOfString
**/
@javax.annotation.Nullable
public Map<String, Map<String, String>> getMapMapOfString() {
return mapMapOfString;
}
@@ -169,7 +168,6 @@ public class MapTest {
* @return mapOfEnumString
**/
@javax.annotation.Nullable
public Map<String, InnerEnum> getMapOfEnumString() {
return mapOfEnumString;
}
@@ -199,7 +197,6 @@ public class MapTest {
* @return directMap
**/
@javax.annotation.Nullable
public Map<String, Boolean> getDirectMap() {
return directMap;
}
@@ -229,7 +226,6 @@ public class MapTest {
* @return indirectMap
**/
@javax.annotation.Nullable
public Map<String, Boolean> getIndirectMap() {
return indirectMap;
}

View File

@@ -83,7 +83,6 @@ public class MixedPropertiesAndAdditionalPropertiesClass {
* @return uuid
**/
@javax.annotation.Nullable
public UUID getUuid() {
return uuid;
}
@@ -105,7 +104,6 @@ public class MixedPropertiesAndAdditionalPropertiesClass {
* @return dateTime
**/
@javax.annotation.Nullable
public OffsetDateTime getDateTime() {
return dateTime;
}
@@ -135,7 +133,6 @@ public class MixedPropertiesAndAdditionalPropertiesClass {
* @return map
**/
@javax.annotation.Nullable
public Map<String, Animal> getMap() {
return map;
}

View File

@@ -74,7 +74,6 @@ public class Model200Response {
* @return name
**/
@javax.annotation.Nullable
public Integer getName() {
return name;
}
@@ -96,7 +95,6 @@ public class Model200Response {
* @return propertyClass
**/
@javax.annotation.Nullable
public String getPropertyClass() {
return propertyClass;
}

View File

@@ -78,7 +78,6 @@ public class ModelApiResponse {
* @return code
**/
@javax.annotation.Nullable
public Integer getCode() {
return code;
}
@@ -100,7 +99,6 @@ public class ModelApiResponse {
* @return type
**/
@javax.annotation.Nullable
public String getType() {
return type;
}
@@ -122,7 +120,6 @@ public class ModelApiResponse {
* @return message
**/
@javax.annotation.Nullable
public String getMessage() {
return message;
}

View File

@@ -70,7 +70,6 @@ public class ModelFile {
* @return sourceURI
**/
@javax.annotation.Nullable
public String getSourceURI() {
return sourceURI;
}

View File

@@ -70,7 +70,6 @@ public class ModelList {
* @return _123list
**/
@javax.annotation.Nullable
public String get123list() {
return _123list;
}

View File

@@ -70,7 +70,6 @@ public class ModelReturn {
* @return _return
**/
@javax.annotation.Nullable
public Integer getReturn() {
return _return;
}

View File

@@ -92,7 +92,6 @@ public class Name {
* @return name
**/
@javax.annotation.Nonnull
public Integer getName() {
return name;
}
@@ -108,7 +107,6 @@ public class Name {
* @return snakeCase
**/
@javax.annotation.Nullable
public Integer getSnakeCase() {
return snakeCase;
}
@@ -127,7 +125,6 @@ public class Name {
* @return property
**/
@javax.annotation.Nullable
public String getProperty() {
return property;
}
@@ -143,7 +140,6 @@ public class Name {
* @return _123number
**/
@javax.annotation.Nullable
public Integer get123number() {
return _123number;
}

View File

@@ -71,7 +71,6 @@ public class NumberOnly {
* @return justNumber
**/
@javax.annotation.Nullable
public BigDecimal getJustNumber() {
return justNumber;
}

View File

@@ -140,7 +140,6 @@ public class Order {
* @return id
**/
@javax.annotation.Nullable
public Long getId() {
return id;
}
@@ -162,7 +161,6 @@ public class Order {
* @return petId
**/
@javax.annotation.Nullable
public Long getPetId() {
return petId;
}
@@ -184,7 +182,6 @@ public class Order {
* @return quantity
**/
@javax.annotation.Nullable
public Integer getQuantity() {
return quantity;
}
@@ -206,7 +203,6 @@ public class Order {
* @return shipDate
**/
@javax.annotation.Nullable
public OffsetDateTime getShipDate() {
return shipDate;
}
@@ -228,7 +224,6 @@ public class Order {
* @return status
**/
@javax.annotation.Nullable
public StatusEnum getStatus() {
return status;
}
@@ -250,7 +245,6 @@ public class Order {
* @return complete
**/
@javax.annotation.Nullable
public Boolean getComplete() {
return complete;
}

View File

@@ -79,7 +79,6 @@ public class OuterComposite {
* @return myNumber
**/
@javax.annotation.Nullable
public BigDecimal getMyNumber() {
return myNumber;
}
@@ -101,7 +100,6 @@ public class OuterComposite {
* @return myString
**/
@javax.annotation.Nullable
public String getMyString() {
return myString;
}
@@ -123,7 +121,6 @@ public class OuterComposite {
* @return myBoolean
**/
@javax.annotation.Nullable
public Boolean getMyBoolean() {
return myBoolean;
}

View File

@@ -145,7 +145,6 @@ public class Pet {
* @return id
**/
@javax.annotation.Nullable
public Long getId() {
return id;
}
@@ -167,7 +166,6 @@ public class Pet {
* @return category
**/
@javax.annotation.Nullable
public Category getCategory() {
return category;
}
@@ -189,7 +187,6 @@ public class Pet {
* @return name
**/
@javax.annotation.Nonnull
public String getName() {
return name;
}
@@ -219,7 +216,6 @@ public class Pet {
* @return photoUrls
**/
@javax.annotation.Nonnull
public Set<String> getPhotoUrls() {
return photoUrls;
}
@@ -249,7 +245,6 @@ public class Pet {
* @return tags
**/
@javax.annotation.Nullable
public List<Tag> getTags() {
return tags;
}
@@ -271,7 +266,6 @@ public class Pet {
* @return status
**/
@javax.annotation.Nullable
public StatusEnum getStatus() {
return status;
}

View File

@@ -76,7 +76,6 @@ public class ReadOnlyFirst {
* @return bar
**/
@javax.annotation.Nullable
public String getBar() {
return bar;
}
@@ -95,7 +94,6 @@ public class ReadOnlyFirst {
* @return baz
**/
@javax.annotation.Nullable
public String getBaz() {
return baz;
}

View File

@@ -70,7 +70,6 @@ public class SpecialModelName {
* @return $specialPropertyName
**/
@javax.annotation.Nullable
public Long get$SpecialPropertyName() {
return $specialPropertyName;
}

View File

@@ -74,7 +74,6 @@ public class Tag {
* @return id
**/
@javax.annotation.Nullable
public Long getId() {
return id;
}
@@ -96,7 +95,6 @@ public class Tag {
* @return name
**/
@javax.annotation.Nullable
public String getName() {
return name;
}

View File

@@ -89,7 +89,6 @@ public class TypeHolderDefault {
* @return stringItem
**/
@javax.annotation.Nonnull
public String getStringItem() {
return stringItem;
}
@@ -111,7 +110,6 @@ public class TypeHolderDefault {
* @return numberItem
**/
@javax.annotation.Nonnull
public BigDecimal getNumberItem() {
return numberItem;
}
@@ -133,7 +131,6 @@ public class TypeHolderDefault {
* @return integerItem
**/
@javax.annotation.Nonnull
public Integer getIntegerItem() {
return integerItem;
}
@@ -155,7 +152,6 @@ public class TypeHolderDefault {
* @return boolItem
**/
@javax.annotation.Nonnull
public Boolean getBoolItem() {
return boolItem;
}
@@ -185,7 +181,6 @@ public class TypeHolderDefault {
* @return arrayItem
**/
@javax.annotation.Nonnull
public List<Integer> getArrayItem() {
return arrayItem;
}

View File

@@ -93,7 +93,6 @@ public class TypeHolderExample {
* @return stringItem
**/
@javax.annotation.Nonnull
public String getStringItem() {
return stringItem;
}
@@ -115,7 +114,6 @@ public class TypeHolderExample {
* @return numberItem
**/
@javax.annotation.Nonnull
public BigDecimal getNumberItem() {
return numberItem;
}
@@ -137,7 +135,6 @@ public class TypeHolderExample {
* @return floatItem
**/
@javax.annotation.Nonnull
public Float getFloatItem() {
return floatItem;
}
@@ -159,7 +156,6 @@ public class TypeHolderExample {
* @return integerItem
**/
@javax.annotation.Nonnull
public Integer getIntegerItem() {
return integerItem;
}
@@ -181,7 +177,6 @@ public class TypeHolderExample {
* @return boolItem
**/
@javax.annotation.Nonnull
public Boolean getBoolItem() {
return boolItem;
}
@@ -211,7 +206,6 @@ public class TypeHolderExample {
* @return arrayItem
**/
@javax.annotation.Nonnull
public List<Integer> getArrayItem() {
return arrayItem;
}

View File

@@ -98,7 +98,6 @@ public class User {
* @return id
**/
@javax.annotation.Nullable
public Long getId() {
return id;
}
@@ -120,7 +119,6 @@ public class User {
* @return username
**/
@javax.annotation.Nullable
public String getUsername() {
return username;
}
@@ -142,7 +140,6 @@ public class User {
* @return firstName
**/
@javax.annotation.Nullable
public String getFirstName() {
return firstName;
}
@@ -164,7 +161,6 @@ public class User {
* @return lastName
**/
@javax.annotation.Nullable
public String getLastName() {
return lastName;
}
@@ -186,7 +182,6 @@ public class User {
* @return email
**/
@javax.annotation.Nullable
public String getEmail() {
return email;
}
@@ -208,7 +203,6 @@ public class User {
* @return password
**/
@javax.annotation.Nullable
public String getPassword() {
return password;
}
@@ -230,7 +224,6 @@ public class User {
* @return phone
**/
@javax.annotation.Nullable
public String getPhone() {
return phone;
}
@@ -252,7 +245,6 @@ public class User {
* @return userStatus
**/
@javax.annotation.Nullable
public Integer getUserStatus() {
return userStatus;
}

View File

@@ -185,7 +185,6 @@ public class XmlItem {
* @return attributeString
**/
@javax.annotation.Nullable
public String getAttributeString() {
return attributeString;
}
@@ -207,7 +206,6 @@ public class XmlItem {
* @return attributeNumber
**/
@javax.annotation.Nullable
public BigDecimal getAttributeNumber() {
return attributeNumber;
}
@@ -229,7 +227,6 @@ public class XmlItem {
* @return attributeInteger
**/
@javax.annotation.Nullable
public Integer getAttributeInteger() {
return attributeInteger;
}
@@ -251,7 +248,6 @@ public class XmlItem {
* @return attributeBoolean
**/
@javax.annotation.Nullable
public Boolean getAttributeBoolean() {
return attributeBoolean;
}
@@ -281,7 +277,6 @@ public class XmlItem {
* @return wrappedArray
**/
@javax.annotation.Nullable
public List<Integer> getWrappedArray() {
return wrappedArray;
}
@@ -303,7 +298,6 @@ public class XmlItem {
* @return nameString
**/
@javax.annotation.Nullable
public String getNameString() {
return nameString;
}
@@ -325,7 +319,6 @@ public class XmlItem {
* @return nameNumber
**/
@javax.annotation.Nullable
public BigDecimal getNameNumber() {
return nameNumber;
}
@@ -347,7 +340,6 @@ public class XmlItem {
* @return nameInteger
**/
@javax.annotation.Nullable
public Integer getNameInteger() {
return nameInteger;
}
@@ -369,7 +361,6 @@ public class XmlItem {
* @return nameBoolean
**/
@javax.annotation.Nullable
public Boolean getNameBoolean() {
return nameBoolean;
}
@@ -399,7 +390,6 @@ public class XmlItem {
* @return nameArray
**/
@javax.annotation.Nullable
public List<Integer> getNameArray() {
return nameArray;
}
@@ -429,7 +419,6 @@ public class XmlItem {
* @return nameWrappedArray
**/
@javax.annotation.Nullable
public List<Integer> getNameWrappedArray() {
return nameWrappedArray;
}
@@ -451,7 +440,6 @@ public class XmlItem {
* @return prefixString
**/
@javax.annotation.Nullable
public String getPrefixString() {
return prefixString;
}
@@ -473,7 +461,6 @@ public class XmlItem {
* @return prefixNumber
**/
@javax.annotation.Nullable
public BigDecimal getPrefixNumber() {
return prefixNumber;
}
@@ -495,7 +482,6 @@ public class XmlItem {
* @return prefixInteger
**/
@javax.annotation.Nullable
public Integer getPrefixInteger() {
return prefixInteger;
}
@@ -517,7 +503,6 @@ public class XmlItem {
* @return prefixBoolean
**/
@javax.annotation.Nullable
public Boolean getPrefixBoolean() {
return prefixBoolean;
}
@@ -547,7 +532,6 @@ public class XmlItem {
* @return prefixArray
**/
@javax.annotation.Nullable
public List<Integer> getPrefixArray() {
return prefixArray;
}
@@ -577,7 +561,6 @@ public class XmlItem {
* @return prefixWrappedArray
**/
@javax.annotation.Nullable
public List<Integer> getPrefixWrappedArray() {
return prefixWrappedArray;
}
@@ -599,7 +582,6 @@ public class XmlItem {
* @return namespaceString
**/
@javax.annotation.Nullable
public String getNamespaceString() {
return namespaceString;
}
@@ -621,7 +603,6 @@ public class XmlItem {
* @return namespaceNumber
**/
@javax.annotation.Nullable
public BigDecimal getNamespaceNumber() {
return namespaceNumber;
}
@@ -643,7 +624,6 @@ public class XmlItem {
* @return namespaceInteger
**/
@javax.annotation.Nullable
public Integer getNamespaceInteger() {
return namespaceInteger;
}
@@ -665,7 +645,6 @@ public class XmlItem {
* @return namespaceBoolean
**/
@javax.annotation.Nullable
public Boolean getNamespaceBoolean() {
return namespaceBoolean;
}
@@ -695,7 +674,6 @@ public class XmlItem {
* @return namespaceArray
**/
@javax.annotation.Nullable
public List<Integer> getNamespaceArray() {
return namespaceArray;
}
@@ -725,7 +703,6 @@ public class XmlItem {
* @return namespaceWrappedArray
**/
@javax.annotation.Nullable
public List<Integer> getNamespaceWrappedArray() {
return namespaceWrappedArray;
}
@@ -747,7 +724,6 @@ public class XmlItem {
* @return prefixNsString
**/
@javax.annotation.Nullable
public String getPrefixNsString() {
return prefixNsString;
}
@@ -769,7 +745,6 @@ public class XmlItem {
* @return prefixNsNumber
**/
@javax.annotation.Nullable
public BigDecimal getPrefixNsNumber() {
return prefixNsNumber;
}
@@ -791,7 +766,6 @@ public class XmlItem {
* @return prefixNsInteger
**/
@javax.annotation.Nullable
public Integer getPrefixNsInteger() {
return prefixNsInteger;
}
@@ -813,7 +787,6 @@ public class XmlItem {
* @return prefixNsBoolean
**/
@javax.annotation.Nullable
public Boolean getPrefixNsBoolean() {
return prefixNsBoolean;
}
@@ -843,7 +816,6 @@ public class XmlItem {
* @return prefixNsArray
**/
@javax.annotation.Nullable
public List<Integer> getPrefixNsArray() {
return prefixNsArray;
}
@@ -873,7 +845,6 @@ public class XmlItem {
* @return prefixNsWrappedArray
**/
@javax.annotation.Nullable
public List<Integer> getPrefixNsWrappedArray() {
return prefixNsWrappedArray;
}

View File

@@ -74,7 +74,6 @@ public class Category {
* @return id
**/
@javax.annotation.Nullable
public Long getId() {
return id;
}
@@ -96,7 +95,6 @@ public class Category {
* @return name
**/
@javax.annotation.Nullable
public String getName() {
return name;
}

View File

@@ -78,7 +78,6 @@ public class ModelApiResponse {
* @return code
**/
@javax.annotation.Nullable
public Integer getCode() {
return code;
}
@@ -100,7 +99,6 @@ public class ModelApiResponse {
* @return type
**/
@javax.annotation.Nullable
public String getType() {
return type;
}
@@ -122,7 +120,6 @@ public class ModelApiResponse {
* @return message
**/
@javax.annotation.Nullable
public String getMessage() {
return message;
}

View File

@@ -140,7 +140,6 @@ public class Order {
* @return id
**/
@javax.annotation.Nullable
public Long getId() {
return id;
}
@@ -162,7 +161,6 @@ public class Order {
* @return petId
**/
@javax.annotation.Nullable
public Long getPetId() {
return petId;
}
@@ -184,7 +182,6 @@ public class Order {
* @return quantity
**/
@javax.annotation.Nullable
public Integer getQuantity() {
return quantity;
}
@@ -206,7 +203,6 @@ public class Order {
* @return shipDate
**/
@javax.annotation.Nullable
public OffsetDateTime getShipDate() {
return shipDate;
}
@@ -228,7 +224,6 @@ public class Order {
* @return status
**/
@javax.annotation.Nullable
public StatusEnum getStatus() {
return status;
}
@@ -250,7 +245,6 @@ public class Order {
* @return complete
**/
@javax.annotation.Nullable
public Boolean getComplete() {
return complete;
}

View File

@@ -144,7 +144,6 @@ public class Pet {
* @return id
**/
@javax.annotation.Nullable
public Long getId() {
return id;
}
@@ -166,7 +165,6 @@ public class Pet {
* @return category
**/
@javax.annotation.Nullable
public Category getCategory() {
return category;
}
@@ -188,7 +186,6 @@ public class Pet {
* @return name
**/
@javax.annotation.Nonnull
public String getName() {
return name;
}
@@ -218,7 +215,6 @@ public class Pet {
* @return photoUrls
**/
@javax.annotation.Nonnull
public List<String> getPhotoUrls() {
return photoUrls;
}
@@ -248,7 +244,6 @@ public class Pet {
* @return tags
**/
@javax.annotation.Nullable
public List<Tag> getTags() {
return tags;
}
@@ -273,7 +268,6 @@ public class Pet {
**/
@Deprecated
@javax.annotation.Nullable
public StatusEnum getStatus() {
return status;
}

View File

@@ -74,7 +74,6 @@ public class Tag {
* @return id
**/
@javax.annotation.Nullable
public Long getId() {
return id;
}
@@ -96,7 +95,6 @@ public class Tag {
* @return name
**/
@javax.annotation.Nullable
public String getName() {
return name;
}

View File

@@ -98,7 +98,6 @@ public class User {
* @return id
**/
@javax.annotation.Nullable
public Long getId() {
return id;
}
@@ -120,7 +119,6 @@ public class User {
* @return username
**/
@javax.annotation.Nullable
public String getUsername() {
return username;
}
@@ -142,7 +140,6 @@ public class User {
* @return firstName
**/
@javax.annotation.Nullable
public String getFirstName() {
return firstName;
}
@@ -164,7 +161,6 @@ public class User {
* @return lastName
**/
@javax.annotation.Nullable
public String getLastName() {
return lastName;
}
@@ -186,7 +182,6 @@ public class User {
* @return email
**/
@javax.annotation.Nullable
public String getEmail() {
return email;
}
@@ -208,7 +203,6 @@ public class User {
* @return password
**/
@javax.annotation.Nullable
public String getPassword() {
return password;
}
@@ -230,7 +224,6 @@ public class User {
* @return phone
**/
@javax.annotation.Nullable
public String getPhone() {
return phone;
}
@@ -252,7 +245,6 @@ public class User {
* @return userStatus
**/
@javax.annotation.Nullable
public Integer getUserStatus() {
return userStatus;
}

View File

@@ -72,7 +72,6 @@ public class AdditionalPropertiesAnyType implements Parcelable {
* @return name
**/
@javax.annotation.Nullable
public String getName() {
return name;
}

View File

@@ -73,7 +73,6 @@ public class AdditionalPropertiesArray implements Parcelable {
* @return name
**/
@javax.annotation.Nullable
public String getName() {
return name;
}

View File

@@ -72,7 +72,6 @@ public class AdditionalPropertiesBoolean implements Parcelable {
* @return name
**/
@javax.annotation.Nullable
public String getName() {
return name;
}

View File

@@ -124,7 +124,6 @@ public class AdditionalPropertiesClass implements Parcelable {
* @return mapString
**/
@javax.annotation.Nullable
public Map<String, String> getMapString() {
return mapString;
}
@@ -154,7 +153,6 @@ public class AdditionalPropertiesClass implements Parcelable {
* @return mapNumber
**/
@javax.annotation.Nullable
public Map<String, BigDecimal> getMapNumber() {
return mapNumber;
}
@@ -184,7 +182,6 @@ public class AdditionalPropertiesClass implements Parcelable {
* @return mapInteger
**/
@javax.annotation.Nullable
public Map<String, Integer> getMapInteger() {
return mapInteger;
}
@@ -214,7 +211,6 @@ public class AdditionalPropertiesClass implements Parcelable {
* @return mapBoolean
**/
@javax.annotation.Nullable
public Map<String, Boolean> getMapBoolean() {
return mapBoolean;
}
@@ -244,7 +240,6 @@ public class AdditionalPropertiesClass implements Parcelable {
* @return mapArrayInteger
**/
@javax.annotation.Nullable
public Map<String, List<Integer>> getMapArrayInteger() {
return mapArrayInteger;
}
@@ -274,7 +269,6 @@ public class AdditionalPropertiesClass implements Parcelable {
* @return mapArrayAnytype
**/
@javax.annotation.Nullable
public Map<String, List<Object>> getMapArrayAnytype() {
return mapArrayAnytype;
}
@@ -304,7 +298,6 @@ public class AdditionalPropertiesClass implements Parcelable {
* @return mapMapString
**/
@javax.annotation.Nullable
public Map<String, Map<String, String>> getMapMapString() {
return mapMapString;
}
@@ -334,7 +327,6 @@ public class AdditionalPropertiesClass implements Parcelable {
* @return mapMapAnytype
**/
@javax.annotation.Nullable
public Map<String, Map<String, Object>> getMapMapAnytype() {
return mapMapAnytype;
}
@@ -356,7 +348,6 @@ public class AdditionalPropertiesClass implements Parcelable {
* @return anytype1
**/
@javax.annotation.Nullable
public Object getAnytype1() {
return anytype1;
}
@@ -378,7 +369,6 @@ public class AdditionalPropertiesClass implements Parcelable {
* @return anytype2
**/
@javax.annotation.Nullable
public Object getAnytype2() {
return anytype2;
}
@@ -400,7 +390,6 @@ public class AdditionalPropertiesClass implements Parcelable {
* @return anytype3
**/
@javax.annotation.Nullable
public Object getAnytype3() {
return anytype3;
}

View File

@@ -72,7 +72,6 @@ public class AdditionalPropertiesInteger implements Parcelable {
* @return name
**/
@javax.annotation.Nullable
public String getName() {
return name;
}

View File

@@ -73,7 +73,6 @@ public class AdditionalPropertiesNumber implements Parcelable {
* @return name
**/
@javax.annotation.Nullable
public String getName() {
return name;
}

View File

@@ -73,7 +73,6 @@ public class AdditionalPropertiesObject implements Parcelable {
* @return name
**/
@javax.annotation.Nullable
public String getName() {
return name;
}

View File

@@ -72,7 +72,6 @@ public class AdditionalPropertiesString implements Parcelable {
* @return name
**/
@javax.annotation.Nullable
public String getName() {
return name;
}

View File

@@ -77,7 +77,6 @@ public class Animal implements Parcelable {
* @return className
**/
@javax.annotation.Nonnull
public String getClassName() {
return className;
}
@@ -99,7 +98,6 @@ public class Animal implements Parcelable {
* @return color
**/
@javax.annotation.Nullable
public String getColor() {
return color;
}

View File

@@ -83,7 +83,6 @@ public class ArrayOfArrayOfNumberOnly implements Parcelable {
* @return arrayArrayNumber
**/
@javax.annotation.Nullable
public List<List<BigDecimal>> getArrayArrayNumber() {
return arrayArrayNumber;
}

View File

@@ -83,7 +83,6 @@ public class ArrayOfNumberOnly implements Parcelable {
* @return arrayNumber
**/
@javax.annotation.Nullable
public List<BigDecimal> getArrayNumber() {
return arrayNumber;
}

View File

@@ -91,7 +91,6 @@ public class ArrayTest implements Parcelable {
* @return arrayOfString
**/
@javax.annotation.Nullable
public List<String> getArrayOfString() {
return arrayOfString;
}
@@ -121,7 +120,6 @@ public class ArrayTest implements Parcelable {
* @return arrayArrayOfInteger
**/
@javax.annotation.Nullable
public List<List<Long>> getArrayArrayOfInteger() {
return arrayArrayOfInteger;
}
@@ -151,7 +149,6 @@ public class ArrayTest implements Parcelable {
* @return arrayArrayOfModel
**/
@javax.annotation.Nullable
public List<List<ReadOnlyFirst>> getArrayArrayOfModel() {
return arrayArrayOfModel;
}

View File

@@ -126,7 +126,6 @@ public class BigCat extends Cat implements Parcelable {
* @return kind
**/
@javax.annotation.Nullable
public KindEnum getKind() {
return kind;
}

View File

@@ -123,7 +123,6 @@ public class BigCatAllOf implements Parcelable {
* @return kind
**/
@javax.annotation.Nullable
public KindEnum getKind() {
return kind;
}

View File

@@ -92,7 +92,6 @@ public class Capitalization implements Parcelable {
* @return smallCamel
**/
@javax.annotation.Nullable
public String getSmallCamel() {
return smallCamel;
}
@@ -114,7 +113,6 @@ public class Capitalization implements Parcelable {
* @return capitalCamel
**/
@javax.annotation.Nullable
public String getCapitalCamel() {
return capitalCamel;
}
@@ -136,7 +134,6 @@ public class Capitalization implements Parcelable {
* @return smallSnake
**/
@javax.annotation.Nullable
public String getSmallSnake() {
return smallSnake;
}
@@ -158,7 +155,6 @@ public class Capitalization implements Parcelable {
* @return capitalSnake
**/
@javax.annotation.Nullable
public String getCapitalSnake() {
return capitalSnake;
}
@@ -180,7 +176,6 @@ public class Capitalization implements Parcelable {
* @return scAETHFlowPoints
**/
@javax.annotation.Nullable
public String getScAETHFlowPoints() {
return scAETHFlowPoints;
}
@@ -202,7 +197,6 @@ public class Capitalization implements Parcelable {
* @return ATT_NAME
**/
@javax.annotation.Nullable
public String getATTNAME() {
return ATT_NAME;
}

View File

@@ -75,7 +75,6 @@ public class Cat extends Animal implements Parcelable {
* @return declawed
**/
@javax.annotation.Nullable
public Boolean getDeclawed() {
return declawed;
}

View File

@@ -72,7 +72,6 @@ public class CatAllOf implements Parcelable {
* @return declawed
**/
@javax.annotation.Nullable
public Boolean getDeclawed() {
return declawed;
}

View File

@@ -76,7 +76,6 @@ public class Category implements Parcelable {
* @return id
**/
@javax.annotation.Nullable
public Long getId() {
return id;
}
@@ -98,7 +97,6 @@ public class Category implements Parcelable {
* @return name
**/
@javax.annotation.Nonnull
public String getName() {
return name;
}

View File

@@ -72,7 +72,6 @@ public class ClassModel implements Parcelable {
* @return propertyClass
**/
@javax.annotation.Nullable
public String getPropertyClass() {
return propertyClass;
}

View File

@@ -72,7 +72,6 @@ public class Client implements Parcelable {
* @return client
**/
@javax.annotation.Nullable
public String getClient() {
return client;
}

View File

@@ -75,7 +75,6 @@ public class Dog extends Animal implements Parcelable {
* @return breed
**/
@javax.annotation.Nullable
public String getBreed() {
return breed;
}

View File

@@ -72,7 +72,6 @@ public class DogAllOf implements Parcelable {
* @return breed
**/
@javax.annotation.Nullable
public String getBreed() {
return breed;
}

View File

@@ -172,7 +172,6 @@ public class EnumArrays implements Parcelable {
* @return justSymbol
**/
@javax.annotation.Nullable
public JustSymbolEnum getJustSymbol() {
return justSymbol;
}
@@ -202,7 +201,6 @@ public class EnumArrays implements Parcelable {
* @return arrayEnum
**/
@javax.annotation.Nullable
public List<ArrayEnumEnum> getArrayEnum() {
return arrayEnum;
}

View File

@@ -281,7 +281,6 @@ public class EnumTest implements Parcelable {
* @return enumString
**/
@javax.annotation.Nullable
public EnumStringEnum getEnumString() {
return enumString;
}
@@ -303,7 +302,6 @@ public class EnumTest implements Parcelable {
* @return enumStringRequired
**/
@javax.annotation.Nonnull
public EnumStringRequiredEnum getEnumStringRequired() {
return enumStringRequired;
}
@@ -325,7 +323,6 @@ public class EnumTest implements Parcelable {
* @return enumInteger
**/
@javax.annotation.Nullable
public EnumIntegerEnum getEnumInteger() {
return enumInteger;
}
@@ -347,7 +344,6 @@ public class EnumTest implements Parcelable {
* @return enumNumber
**/
@javax.annotation.Nullable
public EnumNumberEnum getEnumNumber() {
return enumNumber;
}
@@ -369,7 +365,6 @@ public class EnumTest implements Parcelable {
* @return outerEnum
**/
@javax.annotation.Nullable
public OuterEnum getOuterEnum() {
return outerEnum;
}

View File

@@ -79,7 +79,6 @@ public class FileSchemaTestClass implements Parcelable {
* @return _file
**/
@javax.annotation.Nullable
public ModelFile getFile() {
return _file;
}
@@ -109,7 +108,6 @@ public class FileSchemaTestClass implements Parcelable {
* @return files
**/
@javax.annotation.Nullable
public List<ModelFile> getFiles() {
return files;
}

View File

@@ -131,7 +131,6 @@ public class FormatTest implements Parcelable {
* @return integer
**/
@javax.annotation.Nullable
public Integer getInteger() {
return integer;
}
@@ -155,7 +154,6 @@ public class FormatTest implements Parcelable {
* @return int32
**/
@javax.annotation.Nullable
public Integer getInt32() {
return int32;
}
@@ -177,7 +175,6 @@ public class FormatTest implements Parcelable {
* @return int64
**/
@javax.annotation.Nullable
public Long getInt64() {
return int64;
}
@@ -201,7 +198,6 @@ public class FormatTest implements Parcelable {
* @return number
**/
@javax.annotation.Nonnull
public BigDecimal getNumber() {
return number;
}
@@ -225,7 +221,6 @@ public class FormatTest implements Parcelable {
* @return _float
**/
@javax.annotation.Nullable
public Float getFloat() {
return _float;
}
@@ -249,7 +244,6 @@ public class FormatTest implements Parcelable {
* @return _double
**/
@javax.annotation.Nullable
public Double getDouble() {
return _double;
}
@@ -271,7 +265,6 @@ public class FormatTest implements Parcelable {
* @return string
**/
@javax.annotation.Nullable
public String getString() {
return string;
}
@@ -293,7 +286,6 @@ public class FormatTest implements Parcelable {
* @return _byte
**/
@javax.annotation.Nonnull
public byte[] getByte() {
return _byte;
}
@@ -315,7 +307,6 @@ public class FormatTest implements Parcelable {
* @return binary
**/
@javax.annotation.Nullable
public File getBinary() {
return binary;
}
@@ -337,7 +328,6 @@ public class FormatTest implements Parcelable {
* @return date
**/
@javax.annotation.Nonnull
public LocalDate getDate() {
return date;
}
@@ -359,7 +349,6 @@ public class FormatTest implements Parcelable {
* @return dateTime
**/
@javax.annotation.Nullable
public OffsetDateTime getDateTime() {
return dateTime;
}
@@ -381,7 +370,6 @@ public class FormatTest implements Parcelable {
* @return uuid
**/
@javax.annotation.Nullable
public UUID getUuid() {
return uuid;
}
@@ -403,7 +391,6 @@ public class FormatTest implements Parcelable {
* @return password
**/
@javax.annotation.Nonnull
public String getPassword() {
return password;
}
@@ -425,7 +412,6 @@ public class FormatTest implements Parcelable {
* @return bigDecimal
**/
@javax.annotation.Nullable
public BigDecimal getBigDecimal() {
return bigDecimal;
}

View File

@@ -80,7 +80,6 @@ public class HasOnlyReadOnly implements Parcelable {
* @return bar
**/
@javax.annotation.Nullable
public String getBar() {
return bar;
}
@@ -93,7 +92,6 @@ public class HasOnlyReadOnly implements Parcelable {
* @return foo
**/
@javax.annotation.Nullable
public String getFoo() {
return foo;
}

View File

@@ -141,7 +141,6 @@ public class MapTest implements Parcelable {
* @return mapMapOfString
**/
@javax.annotation.Nullable
public Map<String, Map<String, String>> getMapMapOfString() {
return mapMapOfString;
}
@@ -171,7 +170,6 @@ public class MapTest implements Parcelable {
* @return mapOfEnumString
**/
@javax.annotation.Nullable
public Map<String, InnerEnum> getMapOfEnumString() {
return mapOfEnumString;
}
@@ -201,7 +199,6 @@ public class MapTest implements Parcelable {
* @return directMap
**/
@javax.annotation.Nullable
public Map<String, Boolean> getDirectMap() {
return directMap;
}
@@ -231,7 +228,6 @@ public class MapTest implements Parcelable {
* @return indirectMap
**/
@javax.annotation.Nullable
public Map<String, Boolean> getIndirectMap() {
return indirectMap;
}

View File

@@ -85,7 +85,6 @@ public class MixedPropertiesAndAdditionalPropertiesClass implements Parcelable {
* @return uuid
**/
@javax.annotation.Nullable
public UUID getUuid() {
return uuid;
}
@@ -107,7 +106,6 @@ public class MixedPropertiesAndAdditionalPropertiesClass implements Parcelable {
* @return dateTime
**/
@javax.annotation.Nullable
public OffsetDateTime getDateTime() {
return dateTime;
}
@@ -137,7 +135,6 @@ public class MixedPropertiesAndAdditionalPropertiesClass implements Parcelable {
* @return map
**/
@javax.annotation.Nullable
public Map<String, Animal> getMap() {
return map;
}

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