File tree 2 files changed +2
-4
lines changed
2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ if (__DEV__) {
25
25
}
26
26
27
27
var runnables = { } ;
28
+ var runCount = 1 ;
28
29
29
30
type ComponentProvider = ( ) => ReactClass < any > ;
30
31
@@ -88,7 +89,7 @@ var AppRegistry = {
88
89
', performance optimizations are ' + ( __DEV__ ? 'OFF' : 'ON' ) ;
89
90
console . log ( msg ) ;
90
91
BugReporting . init ( ) ;
91
- BugReporting . addSource ( 'AppRegistry.runApplication' , ( ) => msg ) ;
92
+ BugReporting . addSource ( 'AppRegistry.runApplication' + runCount ++ , ( ) => msg ) ;
92
93
invariant (
93
94
runnables [ appKey ] && runnables [ appKey ] . run ,
94
95
'Application ' + appKey + ' has not been registered. This ' +
Original file line number Diff line number Diff line change @@ -756,8 +756,5 @@ var Touchable = {
756
756
) ;
757
757
}
758
758
} ;
759
- if ( Touchable . TOUCH_TARGET_DEBUG ) {
760
- console . warn ( 'Touchable.TOUCH_TARGET_DEBUG is enabled' ) ;
761
- }
762
759
763
760
module . exports = Touchable ;
You can’t perform that action at this time.
0 commit comments