(Object obj)
| 147 | } |
| 148 | |
| 149 | @Override |
| 150 | public boolean equals(Object obj) { |
| 151 | if (this == obj) { |
| 152 | return true; |
| 153 | } |
| 154 | if (obj == null) { |
| 155 | return false; |
| 156 | } |
| 157 | if (getClass() != obj.getClass()) { |
| 158 | return false; |
| 159 | } |
| 160 | final RequestKey other = (RequestKey) obj; |
| 161 | if (method != other.method) { |
| 162 | return false; |
| 163 | } |
| 164 | if (url == null) { |
| 165 | return other.url == null; |
| 166 | } else return url.equals(other.url); |
| 167 | } |
| 168 | |
| 169 | public boolean equalsExtended(Object obj) { |
| 170 | if (equals(obj)) { |
no outgoing calls