@@ -20,11 +20,10 @@ #include #include #include #import "OFMutableData.h" -#import "OFData+Private.h" #import "OFString.h" #import "OFInvalidArgumentException.h" #import "OFOutOfMemoryException.h" #import "OFOutOfRangeException.h" @@ -52,20 +51,20 @@ capacity: capacity] autorelease]; } - (instancetype)init { - self = [super of_init]; + self = [super init]; _itemSize = 1; return self; } - (instancetype)initWithItemSize: (size_t)itemSize { - self = [super of_init]; + self = [super init]; @try { if (itemSize == 0) @throw [OFInvalidArgumentException exception]; @@ -85,11 +84,11 @@ } - (instancetype)initWithItemSize: (size_t)itemSize capacity: (size_t)capacity { - self = [super of_init]; + self = [super init]; @try { if (itemSize == 0) @throw [OFInvalidArgumentException exception];