mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-01-12 22:51:50 +08:00
23 lines
544 B
Objective-C
23 lines
544 B
Objective-C
//
|
|
// RKMapping.m
|
|
// RestKit
|
|
//
|
|
// Created by Blake Watters on 2/15/12.
|
|
// Copyright (c) 2009-2012 RestKit. All rights reserved.
|
|
//
|
|
|
|
#import "RKMapping.h"
|
|
|
|
@implementation RKMapping
|
|
|
|
@synthesize forceCollectionMapping;
|
|
|
|
- (BOOL)isEqualToMapping:(RKMapping *)otherMapping
|
|
{
|
|
@throw [NSException exceptionWithName:NSInternalInconsistencyException
|
|
reason:[NSString stringWithFormat:@"You must override %@ in a subclass", NSStringFromSelector(_cmd)]
|
|
userInfo:nil];
|
|
}
|
|
|
|
@end
|