Overrides Object#hashCode() @return the hash code
()
| 537 | * @return the hash code |
| 538 | */ |
| 539 | @Override |
| 540 | public int hashCode() { |
| 541 | int code = this.urls.hashCode(); |
| 542 | if (this.hasAccessToken()) { |
| 543 | code = code * 31 + this.accessToken.hashCode(); |
| 544 | } |
| 545 | return code; |
| 546 | } |
| 547 | |
| 548 | /** |
| 549 | * Overrides {@link Object#equals(Object)} |
nothing calls this directly
no test coverage detected