From b8ad5a23c68743052084f32cb639a66a809f012d Mon Sep 17 00:00:00 2001 From: Ben Alpert Date: Tue, 24 Jun 2014 22:03:43 -0700 Subject: [PATCH] Remove unused properties from ReactMount (useTouchEvents lives in EventPluginUtils.) Test Plan: jest --- src/browser/ui/ReactMount.js | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/browser/ui/ReactMount.js b/src/browser/ui/ReactMount.js index a07a837a59..6ed9024c1f 100644 --- a/src/browser/ui/ReactMount.js +++ b/src/browser/ui/ReactMount.js @@ -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,