File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -36,7 +36,8 @@ + (BOOL)isSelfClosing {
3636 return YES ;
3737}
3838
39- + (NSDictionary *)getParametersFromValue : (id )value {
39+ + (NSDictionary <NSString *, NSString *> *_Nullable)getParametersFromValue :
40+ (id )value {
4041 ImageData *img = (ImageData *)value;
4142 if (!img)
4243 return nil ;
Original file line number Diff line number Diff line change @@ -37,7 +37,8 @@ + (NSAttributedStringKey)attributeKey {
3737 return LinkAttributeName;
3838}
3939
40- + (NSDictionary *)getParametersFromValue : (id )value {
40+ + (NSDictionary <NSString *, NSString *> *_Nullable)getParametersFromValue :
41+ (id )value {
4142 NSString *url = value;
4243 if (!url)
4344 return nil ;
Original file line number Diff line number Diff line change @@ -36,7 +36,8 @@ + (NSAttributedStringKey)attributeKey {
3636 return MentionAttributeName;
3737}
3838
39- + (NSDictionary *)getParametersFromValue : (id )value {
39+ + (NSDictionary <NSString *, NSString *> *_Nullable)getParametersFromValue :
40+ (id )value {
4041 MentionParams *mp = value;
4142 if (!mp)
4243 return nil ;
Original file line number Diff line number Diff line change 11@protocol ParameterizedStyleProtocol <NSObject >
22
3- + (NSDictionary *_Nullable)getParametersFromValue : (id )value ;
3+ + (NSDictionary <NSString *, NSString *> *_Nullable)getParametersFromValue :
4+ (id _Nullable)value ;
45
56@end
You can’t perform that action at this time.
0 commit comments