Commit 3e24df3b authored by dreis2211's avatar dreis2211 Committed by Andy Wilkinson

Fix method order checkstyle issue

See gh-20525
parent 03157241
......@@ -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;
}
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment