Differences From Artifact [9d821ca63e]:
- File src/XMPPJID.m — part of check-in [134ef1fe81] at 2013-01-06 18:42:00 on branch trunk — Implement isEqual: for XMPPJID (user: florob@babelmonkeys.de, size: 5307) [annotate] [blame] [check-ins using]
To Artifact [e0809705cc]:
- File src/XMPPJID.m — part of check-in [7df3923343] at 2013-02-10 16:31:27 on branch trunk — Implement -hash for XMPPJID (user: florob@babelmonkeys.de, size: 5361) [annotate] [blame] [check-ins using]
︙ | |||
241 242 243 244 245 246 247 248 | 241 242 243 244 245 246 247 248 249 250 251 252 253 | + + + + + | if ([node isEqual: [otherJID node]] && [domain isEqual: [otherJID domain]] && [resource isEqual: [otherJID resource]]) return YES; return NO; } - (uint32_t) hash { return [[self fullJID] hash]; } @end |