File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 26
26
return (<$managedObjectClassName$>ID*)[super objectID];
27
27
}
28
28
29
- + (<$Relationship.immutableCollectionClassName$> *)keyPathsForValuesAffectingValueForKey:(NSString *)key {
30
- <$Relationship.immutableCollectionClassName$> *keyPaths = [super keyPathsForValuesAffectingValueForKey:key];
29
+ + (NSSet *)keyPathsForValuesAffectingValueForKey:(NSString *)key {
30
+ NSSet *keyPaths = [super keyPathsForValuesAffectingValueForKey:key];
31
31
<$foreach Attribute noninheritedAttributes do$><$if Attribute.hasDefinedAttributeType$><$if Attribute.hasScalarAttributeType$>
32
32
if ([key isEqualToString:@"<$Attribute.name$>Value"]) {
33
- <$Relationship.immutableCollectionClassName$> *affectingKey = [<$Relationship.immutableCollectionClassName$> setWithObject:@"<$Attribute.name$>"];
33
+ NSSet *affectingKey = [NSSet setWithObject:@"<$Attribute.name$>"];
34
34
keyPaths = [keyPaths setByAddingObjectsFromSet:affectingKey];
35
35
}<$endif$><$endif$><$endforeach do$>
36
36
You can’t perform that action at this time.
0 commit comments