Merge pull request #20525 from dreis2211

* gh-20525:
  Fix method order checkstyle issue

Closes gh-20525
This commit is contained in:
Andy Wilkinson
2020-03-13 15:53:58 +00:00

View File

@@ -177,15 +177,6 @@ public class CachingOperationInvoker implements OperationInvoker {
this.apiVersion = apiVersion;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + this.apiVersion.hashCode();
result = prime * result + ((this.principal == null) ? 0 : this.principal.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
@@ -212,6 +203,15 @@ public class CachingOperationInvoker implements OperationInvoker {
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + this.apiVersion.hashCode();
result = prime * result + ((this.principal == null) ? 0 : this.principal.hashCode());
return result;
}
}
}