[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

@@ -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;
}