From cb50a8698b3e8aef4e96fed09a4c8e0ec193af72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Markb=C3=A5ge?= Date: Fri, 31 Oct 2014 12:39:38 -0700 Subject: [PATCH] Remove unrelated comment This is no longer unwrapping a legacy factory (which are gone). --- src/core/ReactNativeComponent.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/core/ReactNativeComponent.js b/src/core/ReactNativeComponent.js index 5bc49b0a6f..431b12eccb 100644 --- a/src/core/ReactNativeComponent.js +++ b/src/core/ReactNativeComponent.js @@ -57,7 +57,6 @@ function createInstanceForTag(tag, props, parentType) { ); return new genericComponentClass(tag, props); } - // Unwrap legacy factories return new componentClass(props); }