Fix flow errors (#6719)

The new flow somehow found these on my machine but nowhere else
and not previously.
(cherry picked from commit 069f8099d6)
This commit is contained in:
Sebastian Markbåge
2016-06-14 15:30:25 -07:00
committed by Paul O’Shannessy
parent f112083c7a
commit 484a5b38af
2 changed files with 1 additions and 2 deletions
@@ -7,7 +7,6 @@
* of patent rights can be found in the PATENTS file in the same directory.
*
* @providesModule ReactNativeDOMIDOperations
* @flow
*/
'use strict';
+1 -1
View File
@@ -175,7 +175,7 @@ var ReactNativeMount = {
* @param {View} view View tree image.
* @param {number} containerViewID View to insert sub-view into.
*/
_mountImageIntoNode: function(mountImage, containerID) {
_mountImageIntoNode: function(mountImage : number, containerID : number) {
// Since we now know that the `mountImage` has been mounted, we can
// mark it as such.
var childTag = mountImage;