From 2a96dba075367047be6bdb88d2fee6a1a05bc85c Mon Sep 17 00:00:00 2001 From: Richard Howell Date: Mon, 20 May 2024 13:11:48 -0700 Subject: [PATCH] remove shadowed static (#44626) Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/44626 This variable is unused and is shadowed by a function local. Changelog: [Internal] Reviewed By: NickGerleman Differential Revision: D57568098 fbshipit-source-id: e5f56b7ef88497d4b9935275eb7e805660741146 --- .../NativeAnimation/Nodes/RCTInterpolationAnimatedNode.mm | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/react-native/Libraries/NativeAnimation/Nodes/RCTInterpolationAnimatedNode.mm b/packages/react-native/Libraries/NativeAnimation/Nodes/RCTInterpolationAnimatedNode.mm index 78ee190dee0..45846b8471c 100644 --- a/packages/react-native/Libraries/NativeAnimation/Nodes/RCTInterpolationAnimatedNode.mm +++ b/packages/react-native/Libraries/NativeAnimation/Nodes/RCTInterpolationAnimatedNode.mm @@ -10,8 +10,6 @@ #import #import -static NSRegularExpression *regex; - typedef NS_ENUM(NSInteger, RCTInterpolationOutputType) { RCTInterpolationOutputNumber, RCTInterpolationOutputColor,