Fix CircleCI breakage in RCTPropsAnimatedNode (#29800)

Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/29800

I changed this line in D23272735 (https://github.com/facebook/react-native/commit/700960c9f1a27a12d703b4f0a17673690799f019), 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
This commit is contained in:
Peter Argany
2020-08-31 11:39:54 -07:00
committed by Facebook GitHub Bot
parent 05abbd245c
commit b231e3ab41
@@ -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>