Differences From Artifact [ec99f99ba0]:
- File src/OFASN1IA5String.m — part of check-in [bceb7ed4c9] at 2019-03-08 00:35:48 on branch trunk — Use dot syntax (user: js, size: 2633) [annotate] [blame] [check-ins using]
To Artifact [73d1e395a0]:
- File src/OFASN1IA5String.m — part of check-in [9122facff6] at 2019-10-20 13:15:41 on branch trunk — Fix missing fast paths in -[isEqual:] (user: js, size: 2670) [annotate] [blame] [check-ins using]
| ︙ | |||
93 94 95 96 97 98 99 100 101 102 103 104 105 106 | 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 | + + + |
{
return self.IA5StringValue;
}
- (bool)isEqual: (id)object
{
OFASN1IA5String *IA5String;
if (object == self)
return true;
if (![object isKindOfClass: [OFASN1IA5String class]])
return false;
IA5String = object;
if (![IA5String->_IA5StringValue isEqual: _IA5StringValue])
|
| ︙ |