mirror of
https://github.com/moonlight-stream/moonlight-ios.git
synced 2026-06-17 14:11:35 +00:00
Don't use lightweight generics for Xcode 6 compatibility
This commit is contained in:
@@ -22,7 +22,7 @@ NS_ASSUME_NONNULL_BEGIN
|
|||||||
@property (nullable, nonatomic, retain) NSString *name;
|
@property (nullable, nonatomic, retain) NSString *name;
|
||||||
@property (nullable, nonatomic, retain) NSNumber *pairState;
|
@property (nullable, nonatomic, retain) NSNumber *pairState;
|
||||||
@property (nullable, nonatomic, retain) NSString *uuid;
|
@property (nullable, nonatomic, retain) NSString *uuid;
|
||||||
@property (nullable, nonatomic, retain) NSSet<NSManagedObject *> *appList;
|
@property (nullable, nonatomic, retain) NSSet *appList;
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
|
||||||
@@ -30,8 +30,8 @@ NS_ASSUME_NONNULL_BEGIN
|
|||||||
|
|
||||||
- (void)addAppListObject:(NSManagedObject *)value;
|
- (void)addAppListObject:(NSManagedObject *)value;
|
||||||
- (void)removeAppListObject:(NSManagedObject *)value;
|
- (void)removeAppListObject:(NSManagedObject *)value;
|
||||||
- (void)addAppList:(NSSet<NSManagedObject *> *)values;
|
- (void)addAppList:(NSSet *)values;
|
||||||
- (void)removeAppList:(NSSet<NSManagedObject *> *)values;
|
- (void)removeAppList:(NSSet *)values;
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user