Remove invalid references to RKParser

This commit is contained in:
Blake Watters
2012-11-13 12:32:49 -05:00
parent 158d06d040
commit 91c61640fa
3 changed files with 3 additions and 4 deletions

View File

@@ -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

View File

@@ -33,8 +33,7 @@ typedef enum {
RKRequestUnexpectedResponseError = 3,
RKObjectLoaderUnexpectedResponseError = 4,
RKRequestConnectionTimeoutError = 5,
RKUnsupportedMIMETypeError = 6,
RKParserRegistryEmptyDataError = 7
RKUnsupportedMIMETypeError = 6
} RKRestKitError;

View File

@@ -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;