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