Author: cziegeler
Date: Tue Jan 22 03:40:24 2008
New Revision: 614179
URL: http://svn.apache.org/viewvc?rev=614179&view=rev
Log:
Remove system.out prints.
Modified:
felix/trunk/scrplugin/src/main/java/org/apache/felix/scrplugin/SCRDescriptorMojo.java
Modified:
felix/trunk/scrplugin/src/main/java/org/apache/felix/scrplugin/SCRDescriptorMojo.java
URL:
http://svn.apache.org/viewvc/felix/trunk/scrplugin/src/main/java/org/apache/felix/scrplugin/SCRDescriptorMojo.java?rev=614179&r1=614178&r2=614179&view=diff
==============================================================================
---
felix/trunk/scrplugin/src/main/java/org/apache/felix/scrplugin/SCRDescriptorMojo.java
(original)
+++
felix/trunk/scrplugin/src/main/java/org/apache/felix/scrplugin/SCRDescriptorMojo.java
Tue Jan 22 03:40:24 2008
@@ -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();