From 2b5a6d43117219c1937c3f4d314ea9907b241746 Mon Sep 17 00:00:00 2001 From: Peter Argany Date: Mon, 31 Aug 2020 11:36:43 -0700 Subject: [PATCH] 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 --- Libraries/NativeAnimation/Nodes/RCTPropsAnimatedNode.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/NativeAnimation/Nodes/RCTPropsAnimatedNode.m b/Libraries/NativeAnimation/Nodes/RCTPropsAnimatedNode.m index afb6a67e34c60a..102234798bbc0d 100644 --- a/Libraries/NativeAnimation/Nodes/RCTPropsAnimatedNode.m +++ b/Libraries/NativeAnimation/Nodes/RCTPropsAnimatedNode.m @@ -5,7 +5,7 @@ * LICENSE file in the root directory of this source tree. */ -#import "RCTPropsAnimatedNode.h" +#import #import #import