You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by sk...@apache.org on 2008/06/19 17:47:57 UTC

svn commit: r669514 - /myfaces/myfaces-build-tools/trunk/maven2-plugins/myfaces-builder-plugin/src/main/java/org/apache/myfaces/buildtools/maven2/plugin/builder/qdox/QdoxModelBuilder.java

Author: skitching
Date: Thu Jun 19 08:47:56 2008
New Revision: 669514

URL: http://svn.apache.org/viewvc?rev=669514&view=rev
Log:
Fix debug code accidentally left in.

Modified:
    myfaces/myfaces-build-tools/trunk/maven2-plugins/myfaces-builder-plugin/src/main/java/org/apache/myfaces/buildtools/maven2/plugin/builder/qdox/QdoxModelBuilder.java

Modified: myfaces/myfaces-build-tools/trunk/maven2-plugins/myfaces-builder-plugin/src/main/java/org/apache/myfaces/buildtools/maven2/plugin/builder/qdox/QdoxModelBuilder.java
URL: http://svn.apache.org/viewvc/myfaces/myfaces-build-tools/trunk/maven2-plugins/myfaces-builder-plugin/src/main/java/org/apache/myfaces/buildtools/maven2/plugin/builder/qdox/QdoxModelBuilder.java?rev=669514&r1=669513&r2=669514&view=diff
==============================================================================
--- myfaces/myfaces-build-tools/trunk/maven2-plugins/myfaces-builder-plugin/src/main/java/org/apache/myfaces/buildtools/maven2/plugin/builder/qdox/QdoxModelBuilder.java (original)
+++ myfaces/myfaces-build-tools/trunk/maven2-plugins/myfaces-builder-plugin/src/main/java/org/apache/myfaces/buildtools/maven2/plugin/builder/qdox/QdoxModelBuilder.java Thu Jun 19 08:47:56 2008
@@ -542,7 +542,6 @@
      */
     private void initComponentAncestry(Map javaClassByName, Model model, ClassMeta modelItem)
     {
-        System.out.println("Init ancestry for class [" + modelItem.getSourceClassName() + "]");
         JavaClass clazz = (JavaClass) javaClassByName.get(modelItem.getSourceClassName());
         JavaClass parentClazz = clazz.getSuperJavaClass();
         while (parentClazz != null)