diff --git a/templates/machine.h.motemplate b/templates/machine.h.motemplate index 29f40dc6..187a6ab5 100644 --- a/templates/machine.h.motemplate +++ b/templates/machine.h.motemplate @@ -32,9 +32,9 @@ extern const struct <$managedObjectClassName$>FetchedProperties {<$foreach Fetch <$foreach Attribute noninheritedAttributes do$> <$if Attribute.hasDefinedAttributeType$> <$if TemplateVar.arc$> -@property (nonatomic, strong) <$Attribute.objectAttributeType$><$Attribute.name$>; +@property (nonatomic, strong) <$Attribute.objectAttributeType$> <$Attribute.name$>; <$else$> -@property (nonatomic, retain) <$Attribute.objectAttributeType$><$Attribute.name$>; +@property (nonatomic, retain) <$Attribute.objectAttributeType$> <$Attribute.name$>; <$endif$> <$if Attribute.hasScalarAttributeType$> @property <$Attribute.scalarAttributeType$> <$Attribute.name$>Value;