@@ -53,15 +53,15 @@ @try { if (tagClass != OF_ASN1_TAG_CLASS_UNIVERSAL || tagNumber != OF_ASN1_TAG_NUMBER_ENUMERATED || constructed) @throw [OFInvalidArgumentException exception]; - if ([DEREncodedContents itemSize] != 1) + if (DEREncodedContents.itemSize != 1) @throw [OFInvalidArgumentException exception]; integerValue = of_asn1_der_integer_parse( - [DEREncodedContents items], [DEREncodedContents count]); + DEREncodedContents.items, DEREncodedContents.count); } @catch (id e) { [self release]; @throw e; }