File tree Expand file tree Collapse file tree 3 files changed +2
-8
lines changed
Expand file tree Collapse file tree 3 files changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -52,4 +52,4 @@ suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError
5252unsafe.enable_getters_and_setters=true
5353
5454[version]
55- ^0.49.1
55+ ^0.50.0
Original file line number Diff line number Diff line change @@ -79,19 +79,13 @@ class XHRExampleDownload extends React.Component {
7979 }
8080
8181 const onreadystatechange = ( ) => {
82- /* $FlowFixMe(>=0.48.0 site=react_native_fb,react_native_oss) This comment
83- * suppresses an error found when Flow v0.48 was deployed. To see the
84- * error delete this comment and run Flow. */
8582 if ( xhr . readyState === xhr . HEADERS_RECEIVED ) {
8683 const contentLength =
8784 parseInt ( xhr . getResponseHeader ( 'Content-Length' ) , 10 ) ;
8885 this . setState ( {
8986 contentLength,
9087 responseLength : 0 ,
9188 } ) ;
92- /* $FlowFixMe(>=0.48.0 site=react_native_fb,react_native_oss) This comment
93- * suppresses an error found when Flow v0.48 was deployed. To see the
94- * error delete this comment and run Flow. */
9589 } else if ( xhr . readyState === xhr . LOADING && xhr . response ) {
9690 this . setState ( {
9791 responseLength : xhr . response . length ,
Original file line number Diff line number Diff line change 229229 "eslint-plugin-flowtype" : " ^2.33.0" ,
230230 "eslint-plugin-prettier" : " 2.1.1" ,
231231 "eslint-plugin-react" : " ^7.0.1" ,
232- "flow-bin" : " ^0.49.1 " ,
232+ "flow-bin" : " ^0.50.0 " ,
233233 "jest" : " 20.1.0-chi.1" ,
234234 "jest-phabricator" : " 20.1.0-chi.1" ,
235235 "jest-repl" : " 20.1.0-chi.1" ,
You can’t perform that action at this time.
0 commit comments