Skip to content

Commit

Permalink
Remove unused/invalid Flow suppression
Browse files Browse the repository at this point in the history
Summary:
The suppression comment was not formatted correctly and thus not
used.
Closes #10076

Differential Revision: D3917036

fbshipit-source-id: 92927993fb7223dc131d82096ca92017aea5f1aa
  • Loading branch information
arv authored and Facebook Github Bot 1 committed Sep 23, 2016
1 parent 0cfc38a commit 1142d9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Libraries/Animated/src/Interpolation.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 1142d9d

Please sign in to comment.