in runAs-agent/src/main/java/jetbrains/buildServer/runAs/agent/Result.java [65:71]
public int hashCode() {
int result = (isSuccessful() ? 1 : 0);
result = 31 * result + getContext().hashCode();
result = 31 * result + (getValue() != null ? getValue().hashCode() : 0);
result = 31 * result + (getError() != null ? getError().hashCode() : 0);
return result;
}