From a0d6a98cbf702fc2ee7ba4788d473c484ae067a0 Mon Sep 17 00:00:00 2001
From: Michael Ziwisky <mikezx@gmail.com>
Date: Mon, 28 Dec 2015 19:28:41 -0600
Subject: [PATCH] Remove extraneous comment

This little guy should have been removed in https://github.com/facebook/react/commit/6bd6ef208b302879eb38018d4192a054f40c1c8b
---
 src/addons/transitions/ReactCSSTransitionGroupChild.js | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/src/addons/transitions/ReactCSSTransitionGroupChild.js b/src/addons/transitions/ReactCSSTransitionGroupChild.js
index 8843e5de43443..ff4cce1f7fe19 100644
--- a/src/addons/transitions/ReactCSSTransitionGroupChild.js
+++ b/src/addons/transitions/ReactCSSTransitionGroupChild.js
@@ -19,10 +19,6 @@ var ReactTransitionEvents = require('ReactTransitionEvents');
 
 var onlyChild = require('onlyChild');
 
-// We don't remove the element from the DOM until we receive an animationend or
-// transitionend event. If the user screws up and forgets to add an animation
-// their node will be stuck in the DOM forever, so we detect if an animation
-// does not start and if it doesn't, we just call the end listener immediately.
 var TICK = 17;
 
 var ReactCSSTransitionGroupChild = React.createClass({