(Object o)
| 13 | } |
| 14 | |
| 15 | @Override |
| 16 | public boolean equals(Object o) { |
| 17 | if (this == o) return true; |
| 18 | if (o == null || getClass() != o.getClass()) return false; |
| 19 | |
| 20 | MemCacheKey that = (MemCacheKey) o; |
| 21 | |
| 22 | if (!url.equals(that.url)) return false; |
| 23 | return options.equals(that.options); |
| 24 | |
| 25 | } |
| 26 | |
| 27 | @Override |
| 28 | public int hashCode() { |