@@ -39,15 +39,14 @@ { uint8_t *_items; size_t _count, _itemSize, _capacity; } -#ifdef OF_HAVE_PROPERTIES -@property (readonly) void *items; -@property (readonly) size_t count; +/*! + * The size of a single item in the OFDataArray in bytes. + */ @property (readonly) size_t itemSize; -#endif /*! * @brief Creates a new OFDataArray with an item size of 1. * * @return A new autoreleased OFDataArray @@ -198,17 +197,10 @@ * * @return The number of items in the OFDataArray */ - (size_t)count; -/*! - * @brief Returns the size of a single item in the OFDataArray in bytes. - * - * @return The size of a single item in the OFDataArray in bytes - */ -- (size_t)itemSize; - /*! * @brief Returns all items of the OFDataArray as a C array. * * @warning The pointer is only valid until the OFDataArray is changed! *