Skip to content

Commit

Permalink
Do validation can be nullable. fixes #705
Browse files Browse the repository at this point in the history
  • Loading branch information
mats-claassen committed May 31, 2016
1 parent bbca57a commit 09b2828
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion XLForm/XL/Descriptors/XLFormRowDescriptor.h
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ typedef void(^XLOnChangeBlock)(id __nullable oldValue,id __nullable newValue,XLF
@property (nullable) NSString *requireMsg;
-(void)addValidator:(nonnull id<XLFormValidatorProtocol>)validator;
-(void)removeValidator:(nonnull id<XLFormValidatorProtocol>)validator;
-(nonnull XLFormValidationStatus *)doValidation;
-(nullable XLFormValidationStatus *)doValidation;

// ===========================
// property used for Selectors
Expand Down

0 comments on commit 09b2828

Please sign in to comment.