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
This commit is contained in:
Erik Arvidsson 2016-09-23 16:21:05 -07:00 коммит произвёл Facebook Github Bot 1
Родитель 0cfc38a59f
Коммит 1142d9d059
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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;