Skip to content

Commit 7fd62c2

Browse files
committed
Code formatting.
1 parent 03d0886 commit 7fd62c2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

KVC Validation Pattern/KVC Validation Pattern/Model/Validation/CTCArrayTypeValidator.m

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,6 @@
1212

1313
@implementation CTCArrayTypeValidator
1414

15-
- (BOOL)validateValue:(id *)value error:(NSError **)error {
16-
_isValid = [*value isKindOfClass:[NSArray class]];
17-
return [super validateValue:value error:error];
18-
}
19-
2015
- (id)init {
2116
self = [super init];
2217

@@ -30,4 +25,9 @@ - (id)init {
3025
return self;
3126
}
3227

28+
- (BOOL)validateValue:(id *)value error:(NSError **)error {
29+
_isValid = [*value isKindOfClass:[NSArray class]];
30+
return [super validateValue:value error:error];
31+
}
32+
3333
@end

0 commit comments

Comments
 (0)