Drop instancetype from init methods since the compiler will infer it

This commit is contained in:
Blake Watters
2013-01-01 13:12:21 -05:00
parent a03191c291
commit 9dc08ca27b
26 changed files with 34 additions and 34 deletions

View File

@@ -35,6 +35,6 @@
@param managedObjectContext The managed object context with which to initialize the receiver.
@return The receiver, initialized with the given managed object context.
*/
- (instancetype)initWithManagedObjectContext:(NSManagedObjectContext *)managedObjectContext;
- (id)initWithManagedObjectContext:(NSManagedObjectContext *)managedObjectContext;
@end