Remove system.out prints.

git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@614179 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/scrplugin/src/main/java/org/apache/felix/scrplugin/SCRDescriptorMojo.java b/scrplugin/src/main/java/org/apache/felix/scrplugin/SCRDescriptorMojo.java
index 062590c..041e32d 100644
--- a/scrplugin/src/main/java/org/apache/felix/scrplugin/SCRDescriptorMojo.java
+++ b/scrplugin/src/main/java/org/apache/felix/scrplugin/SCRDescriptorMojo.java
@@ -92,22 +92,7 @@
                                                                              this.project);
         // iterate through all source classes and check for component tag
         final JavaClassDescription[] javaSources = jManager.getSourceDescriptions();
-        
-        if (getLog().isDebugEnabled()) {
-            getLog().debug("Java Sources before sorting");
-            for (int i=0; i < javaSources.length; i++) {
-                System.out.println(i + " - " + javaSources[i].getName());
-            }
-        }
-        
         Arrays.sort(javaSources, new JavaClassDescriptionInheritanceComparator());
-        
-        if (getLog().isDebugEnabled()) {
-            getLog().debug("Java Sources after sorting");
-            for (int i=0; i < javaSources.length; i++) {
-                System.out.println(i + " - " + javaSources[i].getName());
-            }
-        }
 
         final Components components = new Components();
         final Components abstractComponents = new Components();