Skip to content

Commit 48ed605

Browse files
committed
Merge pull request RestKit#889 from jakemaskiewicz/patch-1
Multiple Declarations Removed
2 parents 8d5e315 + f1c7286 commit 48ed605

File tree

3 files changed

+0
-10
lines changed

3 files changed

+0
-10
lines changed

Code/CoreData/NSManagedObject+ActiveRecord.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,6 @@
174174
+ (NSArray *)findAllSortedBy:(NSString *)sortTerm ascending:(BOOL)ascending inContext:(NSManagedObjectContext *)context;
175175
+ (NSArray *)findAllSortedBy:(NSString *)sortTerm ascending:(BOOL)ascending withPredicate:(NSPredicate *)searchTerm;
176176
+ (NSArray *)findAllSortedBy:(NSString *)sortTerm ascending:(BOOL)ascending withPredicate:(NSPredicate *)searchTerm inContext:(NSManagedObjectContext *)context;
177-
+ (NSFetchRequest *)requestAllSortedBy:(NSString *)sortTerm ascending:(BOOL)ascending withPredicate:(NSPredicate *)searchTerm inContext:(NSManagedObjectContext *)context;
178177

179178
+ (NSArray *)findAllWithPredicate:(NSPredicate *)searchTerm;
180179
+ (NSArray *)findAllWithPredicate:(NSPredicate *)searchTerm inContext:(NSManagedObjectContext *)context;

Code/ObjectMapping/RKObjectManager.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -444,8 +444,6 @@ typedef enum {
444444
The mapResponseWith: family of methods have been deprecated by the support for object mapping selection
445445
using resourcePath's
446446
*/
447-
- (RKObjectLoader *)objectLoaderForObject:(id<NSObject>)object method:(RKRequestMethod)method delegate:(id<RKObjectLoaderDelegate>)delegate;
448-
- (RKObjectLoader *)objectLoaderForObject:(id<NSObject>)object method:(RKRequestMethod)method delegate:(id<RKObjectLoaderDelegate>)delegate;
449447
- (void)getObject:(id<NSObject>)object mapResponseWith:(RKObjectMapping *)objectMapping delegate:(id<RKObjectLoaderDelegate>)delegate DEPRECATED_ATTRIBUTE;
450448
- (void)postObject:(id<NSObject>)object mapResponseWith:(RKObjectMapping *)objectMapping delegate:(id<RKObjectLoaderDelegate>)delegate DEPRECATED_ATTRIBUTE;
451449
- (void)putObject:(id<NSObject>)object mapResponseWith:(RKObjectMapping *)objectMapping delegate:(id<RKObjectLoaderDelegate>)delegate DEPRECATED_ATTRIBUTE;

Code/ObjectMapping/RKObjectMapping.h

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -499,13 +499,6 @@ relationship. Relationships are processed using an object mapping as well.
499499
*/
500500
- (Class)classForProperty:(NSString *)propertyName;
501501

502-
/**
503-
Returns an auto-released object that can be used to apply this object mapping
504-
given a set of mappable data. For transient objects, this generally returns an
505-
instance of the objectClass. For Core Data backed persistent objects, mappableData
506-
will be inspected to search for primary key data to lookup existing object instances.
507-
*/
508-
- (id)mappableObjectForData:(id)mappableData;
509502

510503
// Deprecations
511504
+ (id)mappingForClass:(Class)objectClass withBlock:(void (^)(RKObjectMapping *))block DEPRECATED_ATTRIBUTE;

0 commit comments

Comments
 (0)