[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";
}