[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

@@ -65,7 +65,7 @@ public class AdditionalPropertiesAnyType extends HashMap<String, Object> impleme
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -97,7 +97,7 @@ public class AdditionalPropertiesAnyType extends HashMap<String, Object> impleme
* 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

@@ -66,7 +66,7 @@ public class AdditionalPropertiesArray extends HashMap<String, List> implements
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -98,7 +98,7 @@ public class AdditionalPropertiesArray extends HashMap<String, List> implements
* 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

@@ -65,7 +65,7 @@ public class AdditionalPropertiesBoolean extends HashMap<String, Boolean> implem
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -97,7 +97,7 @@ public class AdditionalPropertiesBoolean extends HashMap<String, Boolean> implem
* 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

@@ -400,7 +400,7 @@ public class AdditionalPropertiesClass implements Parcelable {
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -450,7 +450,7 @@ public class AdditionalPropertiesClass implements Parcelable {
* 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

@@ -65,7 +65,7 @@ public class AdditionalPropertiesInteger extends HashMap<String, Integer> implem
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -97,7 +97,7 @@ public class AdditionalPropertiesInteger extends HashMap<String, Integer> implem
* 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

@@ -66,7 +66,7 @@ public class AdditionalPropertiesNumber extends HashMap<String, BigDecimal> impl
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -98,7 +98,7 @@ public class AdditionalPropertiesNumber extends HashMap<String, BigDecimal> impl
* 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

@@ -65,7 +65,7 @@ public class AdditionalPropertiesObject extends HashMap<String, Map> implements
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -97,7 +97,7 @@ public class AdditionalPropertiesObject extends HashMap<String, Map> implements
* 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

@@ -65,7 +65,7 @@ public class AdditionalPropertiesString extends HashMap<String, String> implemen
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -97,7 +97,7 @@ public class AdditionalPropertiesString extends HashMap<String, String> implemen
* 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

@@ -92,7 +92,7 @@ public class Animal implements Parcelable {
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -124,7 +124,7 @@ public class Animal implements Parcelable {
* 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

@@ -73,7 +73,7 @@ public class ArrayOfArrayOfNumberOnly implements Parcelable {
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -103,7 +103,7 @@ public class ArrayOfArrayOfNumberOnly implements Parcelable {
* 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

@@ -73,7 +73,7 @@ public class ArrayOfNumberOnly implements Parcelable {
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -103,7 +103,7 @@ public class ArrayOfNumberOnly implements Parcelable {
* 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

@@ -143,7 +143,7 @@ public class ArrayTest implements Parcelable {
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -177,7 +177,7 @@ public class ArrayTest implements Parcelable {
* 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 BigCat extends Cat implements Parcelable {
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -149,7 +149,7 @@ public class BigCat extends Cat implements Parcelable {
* 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

@@ -113,7 +113,7 @@ public class BigCatAllOf implements Parcelable {
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -143,7 +143,7 @@ public class BigCatAllOf implements Parcelable {
* 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

@@ -197,7 +197,7 @@ public class Capitalization implements Parcelable {
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -237,7 +237,7 @@ public class Capitalization implements Parcelable {
* 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 Cat extends Animal implements Parcelable {
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -99,7 +99,7 @@ public class Cat extends Animal implements Parcelable {
* 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

@@ -62,7 +62,7 @@ public class CatAllOf implements Parcelable {
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -92,7 +92,7 @@ public class CatAllOf implements Parcelable {
* 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 Category implements Parcelable {
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -120,7 +120,7 @@ public class Category implements Parcelable {
* 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

@@ -63,7 +63,7 @@ public class ClassModel implements Parcelable {
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -93,7 +93,7 @@ public class ClassModel implements Parcelable {
* 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

@@ -62,7 +62,7 @@ public class Client implements Parcelable {
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -92,7 +92,7 @@ public class Client implements Parcelable {
* 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

@@ -66,7 +66,7 @@ public class Dog extends Animal implements Parcelable {
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -98,7 +98,7 @@ public class Dog extends Animal implements Parcelable {
* 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

@@ -62,7 +62,7 @@ public class DogAllOf implements Parcelable {
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -92,7 +92,7 @@ public class DogAllOf implements Parcelable {
* 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

@@ -193,7 +193,7 @@ public class EnumArrays implements Parcelable {
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -225,7 +225,7 @@ public class EnumArrays implements Parcelable {
* 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

@@ -362,7 +362,7 @@ public class EnumTest implements Parcelable {
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -400,7 +400,7 @@ public class EnumTest implements Parcelable {
* 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

@@ -99,7 +99,7 @@ public class FileSchemaTestClass implements Parcelable {
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -131,7 +131,7 @@ public class FileSchemaTestClass implements Parcelable {
* 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 FormatTest implements Parcelable {
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -480,7 +480,7 @@ public class FormatTest implements Parcelable {
* 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

@@ -71,7 +71,7 @@ public class HasOnlyReadOnly implements Parcelable {
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -103,7 +103,7 @@ public class HasOnlyReadOnly implements Parcelable {
* 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

@@ -225,7 +225,7 @@ public class MapTest implements Parcelable {
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -261,7 +261,7 @@ public class MapTest implements Parcelable {
* 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

@@ -130,7 +130,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass implements Parcelable {
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -164,7 +164,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass implements Parcelable {
* 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 Model200Response implements Parcelable {
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -122,7 +122,7 @@ public class Model200Response implements Parcelable {
* 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 ModelApiResponse implements Parcelable {
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -150,7 +150,7 @@ public class ModelApiResponse implements Parcelable {
* 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

@@ -63,7 +63,7 @@ public class ModelReturn implements Parcelable {
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -93,7 +93,7 @@ public class ModelReturn implements Parcelable {
* 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 Name implements Parcelable {
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -161,7 +161,7 @@ public class Name implements Parcelable {
* 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

@@ -63,7 +63,7 @@ public class NumberOnly implements Parcelable {
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -93,7 +93,7 @@ public class NumberOnly implements Parcelable {
* 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

@@ -247,7 +247,7 @@ public class Order implements Parcelable {
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -287,7 +287,7 @@ public class Order implements Parcelable {
* 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 OuterComposite implements Parcelable {
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -151,7 +151,7 @@ public class OuterComposite implements Parcelable {
* 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

@@ -263,7 +263,7 @@ public class Pet implements Parcelable {
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -303,7 +303,7 @@ public class Pet implements Parcelable {
* 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 ReadOnlyFirst implements Parcelable {
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -112,7 +112,7 @@ public class ReadOnlyFirst implements Parcelable {
* 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

@@ -62,7 +62,7 @@ public class SpecialModelName implements Parcelable {
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -92,7 +92,7 @@ public class SpecialModelName implements Parcelable {
* 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

@@ -89,7 +89,7 @@ public class Tag implements Parcelable {
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -121,7 +121,7 @@ public class Tag implements Parcelable {
* 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 TypeHolderDefault implements Parcelable {
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -211,7 +211,7 @@ public class TypeHolderDefault implements Parcelable {
* 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

@@ -199,7 +199,7 @@ public class TypeHolderExample implements Parcelable {
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -239,7 +239,7 @@ public class TypeHolderExample implements Parcelable {
* 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

@@ -251,7 +251,7 @@ public class User implements Parcelable {
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -295,7 +295,7 @@ public class User implements Parcelable {
* 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

@@ -893,7 +893,7 @@ public class XmlItem implements Parcelable {
@Override
public boolean equals(java.lang.Object o) {
public boolean equals(Object o) {
if (this == o) {
return true;
}
@@ -979,7 +979,7 @@ public class XmlItem implements Parcelable {
* 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";
}