Author: maartenc
Date: Thu Aug 30 13:20:58 2007
New Revision: 571296

URL: http://svn.apache.org/viewvc?rev=571296&view=rev
Log:
Improved output for transitive evicted modules.

Modified:
    
incubator/ivy/core/trunk/src/java/org/apache/ivy/plugins/report/LogReportOutputter.java

Modified: 
incubator/ivy/core/trunk/src/java/org/apache/ivy/plugins/report/LogReportOutputter.java
URL: 
http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/java/org/apache/ivy/plugins/report/LogReportOutputter.java?rev=571296&r1=571295&r2=571296&view=diff
==============================================================================
--- 
incubator/ivy/core/trunk/src/java/org/apache/ivy/plugins/report/LogReportOutputter.java
 (original)
+++ 
incubator/ivy/core/trunk/src/java/org/apache/ivy/plugins/report/LogReportOutputter.java
 Thu Aug 30 13:20:58 2007
@@ -91,8 +91,10 @@
                 String[] confs = evicted[i].getEvictedConfs();
                 for (int j = 0; j < confs.length; j++) {
                     EvictionData evictedData = 
evicted[i].getEvictedData(confs[j]);
-                    Message.verbose("\t  in " + evictedData.getParent() + " 
with "
-                            + evictedData.getConflictManager());
+                    if (evictedData.getParent() != null) {
+                        Message.verbose("\t  in " + evictedData.getParent() + 
" with "
+                                + evictedData.getConflictManager());
+                    }
                 }
             }
         }


Reply via email to