Skip to content

Commit

Permalink
Fix ()
Browse files Browse the repository at this point in the history
  • Loading branch information
janicduplessis committed Jun 21, 2019
1 parent 64f0a08 commit acc3318
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Libraries/NativeAnimation/RCTAnimatedValueChangeEvent.m
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ @implementation RCTAnimatedValueChangeEvent
- (instancetype)initWithNodeTag:(NSNumber *)nodeTag
value:(CGFloat)value
{
if ((self = [super init])) {
if (self = [super init]) {
_eventName = @"onAnimatedValueUpdate";
_viewTag = nodeTag;
_coalescingKey = 0;
Expand Down

0 comments on commit acc3318

Please sign in to comment.