From 91c61640fa786519aa5b77ff024571ccab5c1463 Mon Sep 17 00:00:00 2001 From: Blake Watters Date: Tue, 13 Nov 2012 12:32:49 -0500 Subject: [PATCH] Remove invalid references to RKParser --- Code/CoreData/RKManagedObjectImporter.h | 2 +- Code/Support/RKErrors.h | 3 +-- Code/Testing/NSBundle+RKAdditions.h | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) 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;