@@ -59,7 +59,7 @@ - (void)userReplacedInFormattedValueSubstringAtRange:(NSRange)range withString:(
5959{
6060 assert ( nil != replacement );
6161 assert ( isEditing );
62- assert ( (nil != editingFormatter) && @ " 'editingFormatter' must not be nil here." );
62+ assert ( (nil != editingFormatter) && " 'editingFormatter' must not be nil here." );
6363
6464 NSRange replacementRangeInRawValue = [editingFormatter rangeInRawValueForRange: range inFormattedValue: _formattedValue];
6565
@@ -86,7 +86,7 @@ - (void)userReplacedInFormattedValueSubstringAtRange:(NSRange)range withString:(
8686- (void )beginEditing
8787{
8888 assert ( NO == isEditing );
89- assert ( (nil != editingFormatter) && @ " 'editingFormatter' must not be nil here." );
89+ assert ( (nil != editingFormatter) && " 'editingFormatter' must not be nil here." );
9090
9191 isEditing = YES ;
9292
@@ -99,7 +99,7 @@ - (void)moveCaretToTheEndOfRawValue
9999 currentSelectionRangeInRawValue = NSMakeRange (_rawValue.length , 0 );
100100
101101 id <FTCTextEntryFormatter> currentFormatter = isEditing ? editingFormatter : notEditingFormatter;
102- assert ( (nil != currentFormatter) && @ " 'currentFormatter' must not be nil here." );
102+ assert ( (nil != currentFormatter) && " 'currentFormatter' must not be nil here." );
103103
104104 _currentSelectionRangeInFormattedValue = [currentFormatter rangeInFormattedValueForRange: currentSelectionRangeInRawValue inRawValue: _rawValue];
105105}
@@ -118,7 +118,7 @@ - (void)endEditing
118118- (void )doFormatValue
119119{
120120 id <FTCTextEntryFormatter> currentFormatter = isEditing ? editingFormatter : notEditingFormatter;
121- assert ( (nil != currentFormatter) && @ " 'currentFormatter' must not be nil here." );
121+ assert ( (nil != currentFormatter) && " 'currentFormatter' must not be nil here." );
122122
123123 _formattedValue = [currentFormatter formattedFromRaw: (nil != _rawValue ? _rawValue : @" " )];
124124}
@@ -137,11 +137,11 @@ - (void)setRawValue:(NSString *)rawValue
137137
138138- (void )applyConfig : (FTCTextEntryFormattingConfig *)config
139139{
140- assert ( (nil != config) && @ " Argument 'config' must not be nil." );
141- assert ( (nil != config.editingFormatter ) && @ " 'config.editingFormatter' must not be nil here." );
142- assert ( (nil != config.editingInputFilter ) && @ " 'config.editingInputFilter' must not be nil here." );
143- assert ( (nil != config.notEditingFormatter ) && @ " 'config.notEditingFormatter' must not be nil here." );
144- assert ( (nil != config.notEditingInputFilter ) && @ " 'config.notEditingInputFilter' must not be nil here." );
140+ assert ( (nil != config) && " Argument 'config' must not be nil." );
141+ assert ( (nil != config.editingFormatter ) && " 'config.editingFormatter' must not be nil here." );
142+ assert ( (nil != config.editingInputFilter ) && " 'config.editingInputFilter' must not be nil here." );
143+ assert ( (nil != config.notEditingFormatter ) && " 'config.notEditingFormatter' must not be nil here." );
144+ assert ( (nil != config.notEditingInputFilter ) && " 'config.notEditingInputFilter' must not be nil here." );
145145
146146 editingFormatter = config.editingFormatter ;
147147 editingInputFilter = config.editingInputFilter ;
@@ -162,7 +162,7 @@ - (void)doSetRawValue:(nullable NSString *)rawValue
162162
163163- (nullable NSString *)filterValue : (nullable NSString *)value
164164{
165- assert ( (nil != notEditingInputFilter) && @ " 'notEditingInputFilter' must not be nil here." );
165+ assert ( (nil != notEditingInputFilter) && " 'notEditingInputFilter' must not be nil here." );
166166
167167 if ( nil == value )
168168 {
0 commit comments