Skip to content

Commit d617137

Browse files
committed
test(): again?
1 parent 2a63299 commit d617137

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

SoObjects/SOGo/SOGoOpenIdSession.m

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -446,10 +446,7 @@ -(NSString *) _random_state
446446

447447
for (i; i<10; i++) {
448448
int r = 0;
449-
if (arc4random_uniform != NULL)
450-
r = arc4random_uniform([letters length]);
451-
else
452-
r = (arc4random() % [letters length]);
449+
r = (arc4random() % [letters length]);
453450
[randomState appendFormat: @"%C", [letters characterAtIndex: r]];
454451
}
455452

0 commit comments

Comments
 (0)