Remove unused properties from ReactMount

(useTouchEvents lives in EventPluginUtils.)

Test Plan: jest
This commit is contained in:
Ben Alpert 2014-06-24 22:03:43 -07:00
parent c33cceb466
commit b8ad5a23c6
1 changed files with 0 additions and 9 deletions

View File

@ -212,15 +212,6 @@ function findDeepestCachedAncestor(targetID) {
* Inside of `container`, the first element rendered is the "reactRoot".
*/
var ReactMount = {
/** Time spent generating markup. */
totalInstantiationTime: 0,
/** Time spent inserting markup into the DOM. */
totalInjectionTime: 0,
/** Whether support for touch events should be initialized. */
useTouchEvents: false,
/** Exposed for debugging purposes **/
_instancesByReactRootID: instancesByReactRootID,