[Java][clients] remove java.lang prefix from Object (#6806)

This commit is contained in:
Niels Pardon
2020-08-25 04:06:19 +02:00
committed by GitHub
parent a97feaf533
commit d868fd6dc8
2161 changed files with 4195 additions and 4206 deletions

View File

@@ -106,7 +106,7 @@ public abstract class AbstractOpenApiSchema {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -116,7 +116,7 @@ public class ChildSchema extends Parent {
* Return true if this ChildSchema object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -150,7 +150,7 @@ public class ChildSchema extends Parent {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -68,7 +68,7 @@ public class ChildSchemaAllOf {
* Return true if this ChildSchema_allOf object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -98,7 +98,7 @@ public class ChildSchemaAllOf {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -117,7 +117,7 @@ public class MySchemaNameCharacters extends Parent {
* Return true if this MySchemaName._-Characters object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -151,7 +151,7 @@ public class MySchemaNameCharacters extends Parent {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -68,7 +68,7 @@ public class MySchemaNameCharactersAllOf {
* Return true if this MySchemaName___Characters_allOf object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -98,7 +98,7 @@ public class MySchemaNameCharactersAllOf {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -78,7 +78,7 @@ public class Parent {
* Return true if this Parent object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -108,7 +108,7 @@ public class Parent {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -106,7 +106,7 @@ public abstract class AbstractOpenApiSchema {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -312,7 +312,7 @@ public class AdditionalPropertiesClass {
* Return true if this AdditionalPropertiesClass object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -356,7 +356,7 @@ public class AdditionalPropertiesClass {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -105,7 +105,7 @@ public class Animal {
* Return true if this Animal object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -137,7 +137,7 @@ public class Animal {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -96,7 +96,7 @@ public class Apple {
* Return true if this apple object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -128,7 +128,7 @@ public class Apple {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -95,7 +95,7 @@ public class AppleReq {
* Return true if this appleReq object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -127,7 +127,7 @@ public class AppleReq {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -79,7 +79,7 @@ public class ArrayOfArrayOfNumberOnly {
* Return true if this ArrayOfArrayOfNumberOnly object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -109,7 +109,7 @@ public class ArrayOfArrayOfNumberOnly {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -79,7 +79,7 @@ public class ArrayOfNumberOnly {
* Return true if this ArrayOfNumberOnly object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -109,7 +109,7 @@ public class ArrayOfNumberOnly {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -151,7 +151,7 @@ public class ArrayTest {
* Return true if this ArrayTest object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -185,7 +185,7 @@ public class ArrayTest {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -69,7 +69,7 @@ public class Banana {
* Return true if this banana object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -99,7 +99,7 @@ public class Banana {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -96,7 +96,7 @@ public class BananaReq {
* Return true if this bananaReq object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -128,7 +128,7 @@ public class BananaReq {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -67,7 +67,7 @@ public class BasquePig {
* Return true if this BasquePig object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -97,7 +97,7 @@ public class BasquePig {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -208,7 +208,7 @@ public class Capitalization {
* Return true if this Capitalization object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -248,7 +248,7 @@ public class Capitalization {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -115,7 +115,7 @@ public class Cat extends Animal {
* Return true if this Cat object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -149,7 +149,7 @@ public class Cat extends Animal {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -68,7 +68,7 @@ public class CatAllOf {
* Return true if this Cat_allOf object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -98,7 +98,7 @@ public class CatAllOf {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -95,7 +95,7 @@ public class Category {
* Return true if this Category object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -127,7 +127,7 @@ public class Category {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -115,7 +115,7 @@ public class ChildCat extends ParentPet {
* Return true if this ChildCat object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -149,7 +149,7 @@ public class ChildCat extends ParentPet {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -68,7 +68,7 @@ public class ChildCatAllOf {
* Return true if this ChildCat_allOf object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -98,7 +98,7 @@ public class ChildCatAllOf {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -69,7 +69,7 @@ public class ClassModel {
* Return true if this ClassModel object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -99,7 +99,7 @@ public class ClassModel {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -68,7 +68,7 @@ public class Client {
* Return true if this Client object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -98,7 +98,7 @@ public class Client {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -137,7 +137,7 @@ public class ComplexQuadrilateral {
* Return true if this ComplexQuadrilateral object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -171,7 +171,7 @@ public class ComplexQuadrilateral {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -67,7 +67,7 @@ public class DanishPig {
* Return true if this DanishPig object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -97,7 +97,7 @@ public class DanishPig {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -115,7 +115,7 @@ public class Dog extends Animal {
* Return true if this Dog object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -149,7 +149,7 @@ public class Dog extends Animal {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -68,7 +68,7 @@ public class DogAllOf {
* Return true if this Dog_allOf object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -98,7 +98,7 @@ public class DogAllOf {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -220,7 +220,7 @@ public class Drawing {
* Return true if this Drawing object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -258,7 +258,7 @@ public class Drawing {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -176,7 +176,7 @@ public class EnumArrays {
* Return true if this EnumArrays object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -208,7 +208,7 @@ public class EnumArrays {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -424,7 +424,7 @@ public class EnumTest {
* Return true if this Enum_Test object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -468,7 +468,7 @@ public class EnumTest {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -137,7 +137,7 @@ public class EquilateralTriangle {
* Return true if this EquilateralTriangle object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -171,7 +171,7 @@ public class EquilateralTriangle {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -106,7 +106,7 @@ public class FileSchemaTestClass {
* Return true if this FileSchemaTestClass object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -138,7 +138,7 @@ public class FileSchemaTestClass {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -68,7 +68,7 @@ public class Foo {
* Return true if this Foo object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -98,7 +98,7 @@ public class Foo {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -471,7 +471,7 @@ public class FormatTest {
* Return true if this format_test object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -529,7 +529,7 @@ public class FormatTest {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -77,7 +77,7 @@ public class GrandparentAnimal {
* Return true if this GrandparentAnimal object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -107,7 +107,7 @@ public class GrandparentAnimal {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -80,7 +80,7 @@ public class HasOnlyReadOnly {
* Return true if this hasOnlyReadOnly object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -112,7 +112,7 @@ public class HasOnlyReadOnly {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -82,7 +82,7 @@ public class HealthCheckResult {
* Return true if this HealthCheckResult object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -112,7 +112,7 @@ public class HealthCheckResult {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -96,7 +96,7 @@ public class InlineObject {
* Return true if this inline_object object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -128,7 +128,7 @@ public class InlineObject {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -97,7 +97,7 @@ public class InlineObject1 {
* Return true if this inline_object_1 object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -129,7 +129,7 @@ public class InlineObject1 {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -178,7 +178,7 @@ public class InlineObject2 {
* Return true if this inline_object_2 object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -210,7 +210,7 @@ public class InlineObject2 {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -441,7 +441,7 @@ public class InlineObject3 {
* Return true if this inline_object_3 object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -497,7 +497,7 @@ public class InlineObject3 {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -94,7 +94,7 @@ public class InlineObject4 {
* Return true if this inline_object_4 object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -126,7 +126,7 @@ public class InlineObject4 {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -96,7 +96,7 @@ public class InlineObject5 {
* Return true if this inline_object_5 object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -128,7 +128,7 @@ public class InlineObject5 {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -69,7 +69,7 @@ public class InlineResponseDefault {
* Return true if this inline_response_default object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -99,7 +99,7 @@ public class InlineResponseDefault {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -96,7 +96,7 @@ public class IsoscelesTriangle {
* Return true if this IsoscelesTriangle object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -128,7 +128,7 @@ public class IsoscelesTriangle {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -222,7 +222,7 @@ public class MapTest {
* Return true if this MapTest object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -258,7 +258,7 @@ public class MapTest {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -138,7 +138,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass {
* Return true if this MixedPropertiesAndAdditionalPropertiesClass object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -172,7 +172,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -97,7 +97,7 @@ public class Model200Response {
* Return true if this 200_response object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -129,7 +129,7 @@ public class Model200Response {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -124,7 +124,7 @@ public class ModelApiResponse {
* Return true if this ApiResponse object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -158,7 +158,7 @@ public class ModelApiResponse {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -69,7 +69,7 @@ public class ModelReturn {
* Return true if this Return object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -99,7 +99,7 @@ public class ModelReturn {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -136,7 +136,7 @@ public class Name {
* Return true if this Name object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -172,7 +172,7 @@ public class Name {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -591,7 +591,7 @@ public class NullableClass {
* Return true if this NullableClass object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -645,7 +645,7 @@ public class NullableClass {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -69,7 +69,7 @@ public class NumberOnly {
* Return true if this NumberOnly object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -99,7 +99,7 @@ public class NumberOnly {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -246,7 +246,7 @@ public class Order {
* Return true if this Order object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -286,7 +286,7 @@ public class Order {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -125,7 +125,7 @@ public class OuterComposite {
* Return true if this OuterComposite object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -159,7 +159,7 @@ public class OuterComposite {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -90,7 +90,7 @@ public class ParentPet extends GrandparentAnimal {
* Return true if this ParentPet object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -120,7 +120,7 @@ public class ParentPet extends GrandparentAnimal {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -260,7 +260,7 @@ public class Pet {
* Return true if this Pet object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -300,7 +300,7 @@ public class Pet {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -67,7 +67,7 @@ public class QuadrilateralInterface {
* Return true if this QuadrilateralInterface object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -97,7 +97,7 @@ public class QuadrilateralInterface {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -88,7 +88,7 @@ public class ReadOnlyFirst {
* Return true if this ReadOnlyFirst object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -120,7 +120,7 @@ public class ReadOnlyFirst {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -137,7 +137,7 @@ public class ScaleneTriangle {
* Return true if this ScaleneTriangle object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -171,7 +171,7 @@ public class ScaleneTriangle {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -67,7 +67,7 @@ public class ShapeInterface {
* Return true if this ShapeInterface object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -97,7 +97,7 @@ public class ShapeInterface {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -137,7 +137,7 @@ public class SimpleQuadrilateral {
* Return true if this SimpleQuadrilateral object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -171,7 +171,7 @@ public class SimpleQuadrilateral {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -68,7 +68,7 @@ public class SpecialModelName {
* Return true if this _special_model.name_ object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -98,7 +98,7 @@ public class SpecialModelName {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -96,7 +96,7 @@ public class Tag {
* Return true if this Tag object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -128,7 +128,7 @@ public class Tag {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -67,7 +67,7 @@ public class TriangleInterface {
* Return true if this TriangleInterface object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -97,7 +97,7 @@ public class TriangleInterface {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -409,7 +409,7 @@ public class User {
* Return true if this User object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -461,7 +461,7 @@ public class User {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -123,7 +123,7 @@ public class Whale {
* Return true if this whale object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -157,7 +157,7 @@ public class Whale {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}

View File

@@ -173,7 +173,7 @@ public class Zebra {
* Return true if this zebra object is equal to o.
*/
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -207,7 +207,7 @@ public class Zebra {
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}