From 11963d824d42cf94caed7212e55e0452e5a537ea Mon Sep 17 00:00:00 2001 From: Naman Goel Date: Tue, 19 Sep 2017 16:50:30 -0700 Subject: [PATCH] Fix Flow errors in ListViewData source. Differential Revision: D5839414 fbshipit-source-id: 7a0c7b3d27be728c74e08d3a8209deb3ca68dd63 --- Libraries/Lists/ListView/ListViewDataSource.js | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Libraries/Lists/ListView/ListViewDataSource.js b/Libraries/Lists/ListView/ListViewDataSource.js index 4a3f0ff42..3f7a4c10d 100644 --- a/Libraries/Lists/ListView/ListViewDataSource.js +++ b/Libraries/Lists/ListView/ListViewDataSource.js @@ -21,13 +21,7 @@ var warning = require('fbjs/lib/warning'); function defaultGetRowData( dataBlob: any, - /* $FlowFixMe(>=0.53.0 site=react_native_fb) This comment suppresses an error - * found when Flow v0.53 was deployed. To see the error delete this comment - * and run Flow. */ sectionID: number | string, - /* $FlowFixMe(>=0.53.0 site=react_native_fb) This comment suppresses an error - * found when Flow v0.53 was deployed. To see the error delete this comment - * and run Flow. */ rowID: number | string, ): any { return dataBlob[sectionID][rowID];