(TRINIDAD-2551) 
Add Pass-through attributes support
diff --git a/trinidad-api/src/main/java/org/apache/myfaces/trinidad/component/UIXComponentBase.java b/trinidad-api/src/main/java/org/apache/myfaces/trinidad/component/UIXComponentBase.java
index 85738e5..87a6b2d 100644
--- a/trinidad-api/src/main/java/org/apache/myfaces/trinidad/component/UIXComponentBase.java
+++ b/trinidad-api/src/main/java/org/apache/myfaces/trinidad/component/UIXComponentBase.java
@@ -2297,10 +2297,8 @@
 
   public Map<String, Object> getPassThroughAttributes(boolean create)
   {
-    // Take into account the param "create" in MyFaces case does not have
-    // sense at all
     if (_passthroughAttributesMap == null && create)
-    {//_LOG.severe("create new passTA", new Exception());
+    {
       _passthroughAttributesMap = new PassThroughAttributesMap(getFacesBean());
     }
     return _passthroughAttributesMap;