From e8650b2420e3dc0185e814a9ab92e8cb2612c9ae Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Sat, 11 Jul 2015 21:59:01 -0700 Subject: [PATCH] Don't use lightweight generics for Xcode 6 compatibility --- Limelight/Database/Host+CoreDataProperties.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Limelight/Database/Host+CoreDataProperties.h b/Limelight/Database/Host+CoreDataProperties.h index a77ca03..8e22d42 100644 --- a/Limelight/Database/Host+CoreDataProperties.h +++ b/Limelight/Database/Host+CoreDataProperties.h @@ -22,7 +22,7 @@ NS_ASSUME_NONNULL_BEGIN @property (nullable, nonatomic, retain) NSString *name; @property (nullable, nonatomic, retain) NSNumber *pairState; @property (nullable, nonatomic, retain) NSString *uuid; -@property (nullable, nonatomic, retain) NSSet *appList; +@property (nullable, nonatomic, retain) NSSet *appList; @end @@ -30,8 +30,8 @@ NS_ASSUME_NONNULL_BEGIN - (void)addAppListObject:(NSManagedObject *)value; - (void)removeAppListObject:(NSManagedObject *)value; -- (void)addAppList:(NSSet *)values; -- (void)removeAppList:(NSSet *)values; +- (void)addAppList:(NSSet *)values; +- (void)removeAppList:(NSSet *)values; @end