Fix method order checkstyle issue

See gh-20525
This commit is contained in:
dreis2211
2020-03-13 16:46:08 +01:00
committed by Andy Wilkinson
parent 0315724126
commit 3e24df3beb

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