From 1142d9d059936ce0814c40f05693b7c6ee6b4e5c Mon Sep 17 00:00:00 2001 From: Erik Arvidsson Date: Fri, 23 Sep 2016 16:21:05 -0700 Subject: [PATCH] Remove unused/invalid Flow suppression Summary: The suppression comment was not formatted correctly and thus not used. Closes https://github.com/facebook/react-native/pull/10076 Differential Revision: D3917036 fbshipit-source-id: 92927993fb7223dc131d82096ca92017aea5f1aa --- Libraries/Animated/src/Interpolation.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/Animated/src/Interpolation.js b/Libraries/Animated/src/Interpolation.js index b8b18c80b..f467e5941 100644 --- a/Libraries/Animated/src/Interpolation.js +++ b/Libraries/Animated/src/Interpolation.js @@ -163,7 +163,7 @@ function colorToRgba(input: string): string { return input; } - int32Color = int32Color || 0; // $FlowIssue + int32Color = int32Color || 0; var r = (int32Color & 0xff000000) >>> 24; var g = (int32Color & 0x00ff0000) >>> 16;