Skip to content

Commit

Permalink
Fix CircleCI breakage in RCTPropsAnimatedNode (#29800)
Browse files Browse the repository at this point in the history
Summary:
Pull Request resolved: #29800

I changed this line in D23272735 (700960c), to conform to normal ObjC semantics: impl files can import their header by file name.

I forgot that their's some special linking logic happening in this directory that doesn't allow for this import type.

This diff just reverts one line to fix CircleCI builds.

Changelog: [Internal]

Reviewed By: shergin

Differential Revision: D23399893

fbshipit-source-id: 976199c659522effd632aaeb38616d0d6c962f1f
  • Loading branch information
Peter Argany authored and facebook-github-bot committed Aug 31, 2020
1 parent 05abbd2 commit b231e3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Libraries/NativeAnimation/Nodes/RCTPropsAnimatedNode.m
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* LICENSE file in the root directory of this source tree.
*/

#import "RCTPropsAnimatedNode.h"
#import <React/RCTPropsAnimatedNode.h>

#import <React/RCTAnimationUtils.h>
#import <React/RCTLog.h>
Expand Down

0 comments on commit b231e3a

Please sign in to comment.