diff --git a/Code/CoreData/RKManagedObjectImporter.h b/Code/CoreData/RKManagedObjectImporter.h index a34b1fc2..38e22276 100644 --- a/Code/CoreData/RKManagedObjectImporter.h +++ b/Code/CoreData/RKManagedObjectImporter.h @@ -31,7 +31,7 @@ The importer requires that the source files have a MIME type that is identifiable by file extension and be parsable using a parser registered with the shared parser registry. - @see RKParserRegistry + @see RKMIMETypeSerialization */ @interface RKManagedObjectImporter : NSObject diff --git a/Code/Support/RKErrors.h b/Code/Support/RKErrors.h index ce1e65ca..3d53bc88 100644 --- a/Code/Support/RKErrors.h +++ b/Code/Support/RKErrors.h @@ -33,8 +33,7 @@ typedef enum { RKRequestUnexpectedResponseError = 3, RKObjectLoaderUnexpectedResponseError = 4, RKRequestConnectionTimeoutError = 5, - RKUnsupportedMIMETypeError = 6, - RKParserRegistryEmptyDataError = 7 + RKUnsupportedMIMETypeError = 6 } RKRestKitError; diff --git a/Code/Testing/NSBundle+RKAdditions.h b/Code/Testing/NSBundle+RKAdditions.h index 316df1df..f9273deb 100644 --- a/Code/Testing/NSBundle+RKAdditions.h +++ b/Code/Testing/NSBundle+RKAdditions.h @@ -60,7 +60,7 @@ @param name The name of the resource file. @param extension If extension is an empty string or nil, the extension is assumed not to exist and the file is the first file encountered that exactly matches name. @return A new image object for the specified file, or nil if the method could not initialize the image from the specified file. - @see RKParserRegistry + @see RKMIMETypeSerialization */ - (id)parsedObjectWithContentsOfResource:(NSString *)name withExtension:(NSString *)extension;