@@ -39,19 +39,19 @@ + (NSArray *)arrayOfModelsFromKeyValues:(id)keyValues {
39
39
return [self mc_arrayOfModelsFromKeyValues: keyValues];
40
40
}
41
41
42
- + (NSSet *)allowedPropertyNames {
42
+ - (NSSet *)allowedPropertyNames {
43
43
return nil ;
44
44
}
45
45
46
- + (NSDictionary *)keyMappingDictionary {
46
+ - (NSDictionary *)keyMappingDictionary {
47
47
return nil ;
48
48
}
49
49
50
- + (NSDictionary *)typeMappingDictionary {
50
+ - (NSDictionary *)typeMappingDictionary {
51
51
return nil ;
52
52
}
53
53
54
- + (NSSet *)ignoreSet {
54
+ - (NSSet *)ignoreSet {
55
55
return nil ;
56
56
}
57
57
@@ -65,19 +65,19 @@ - (NSString *)toJSONString {
65
65
66
66
#pragma mark JSONCoreConfig
67
67
68
- + (NSSet *)mc_allowedPropertiesSet {
68
+ - (NSSet *)mc_allowedPropertiesSet {
69
69
return [self allowedPropertyNames ];
70
70
}
71
71
72
- + (NSDictionary *)mc_keyMappingDictionary {
72
+ - (NSDictionary *)mc_keyMappingDictionary {
73
73
return [self keyMappingDictionary ];
74
74
}
75
75
76
- + (NSDictionary *)mc_typeMappingDictionary {
76
+ - (NSDictionary *)mc_typeMappingDictionary {
77
77
return [self typeMappingDictionary ];
78
78
}
79
79
80
- + (NSSet *)mc_ignorePropertiesSet {
80
+ - (NSSet *)mc_ignorePropertiesSet {
81
81
return [self ignoreSet ];
82
82
}
83
83
@@ -95,19 +95,19 @@ + (NSArray *)arrayOfModelsFromKeyValues:(id)keyValues {
95
95
return [self mj_objectArrayWithKeyValuesArray: keyValues];
96
96
}
97
97
98
- + (NSSet *)allowedPropertyNames {
98
+ - (NSSet *)allowedPropertyNames {
99
99
return nil ;
100
100
}
101
101
102
- + (NSDictionary *)keyMappingDictionary {
102
+ - (NSDictionary *)keyMappingDictionary {
103
103
return nil ;
104
104
}
105
105
106
- + (NSDictionary *)typeMappingDictionary {
106
+ - (NSDictionary *)typeMappingDictionary {
107
107
return nil ;
108
108
}
109
109
110
- + (NSSet *)ignoreSet {
110
+ - (NSSet *)ignoreSet {
111
111
return nil ;
112
112
}
113
113
@@ -119,19 +119,19 @@ - (NSString *)toJSONString {
119
119
return [self mj_JSONString ];
120
120
}
121
121
122
- + (NSArray *)mj_ignoredPropertyNames {
122
+ - (NSArray *)mj_ignoredPropertyNames {
123
123
return [self ignoreSet ].allObjects ;
124
124
}
125
125
126
- + (NSDictionary *)mj_replacedKeyFromPropertyName {
126
+ - (NSDictionary *)mj_replacedKeyFromPropertyName {
127
127
return [self keyMappingDictionary ];
128
128
}
129
129
130
- + (NSDictionary *)mj_objectClassInArray {
130
+ - (NSDictionary *)mj_objectClassInArray {
131
131
return [self typeMappingDictionary ];
132
132
}
133
133
134
- + (NSArray *)mj_allowedPropertyNames {
134
+ - (NSArray *)mj_allowedPropertyNames {
135
135
return [self allowedPropertyNames ].allObjects ;
136
136
}
137
137
0 commit comments