You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by st...@apache.org on 2014/05/22 15:06:33 UTC

svn commit: r1596852 - /maven/plugins/trunk/maven-project-info-reports-plugin/src/main/java/org/apache/maven/report/projectinfo/TeamListReport.java

Author: stephenc
Date: Thu May 22 13:06:32 2014
New Revision: 1596852

URL: http://svn.apache.org/r1596852
Log:
[MPIR-293] On the team list report the picUrl property appears in the table, although no other properties are set for that team member.

Submitted by Anghel Botos

Modified:
    maven/plugins/trunk/maven-project-info-reports-plugin/src/main/java/org/apache/maven/report/projectinfo/TeamListReport.java

Modified: maven/plugins/trunk/maven-project-info-reports-plugin/src/main/java/org/apache/maven/report/projectinfo/TeamListReport.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-project-info-reports-plugin/src/main/java/org/apache/maven/report/projectinfo/TeamListReport.java?rev=1596852&r1=1596851&r2=1596852&view=diff
==============================================================================
--- maven/plugins/trunk/maven-project-info-reports-plugin/src/main/java/org/apache/maven/report/projectinfo/TeamListReport.java (original)
+++ maven/plugins/trunk/maven-project-info-reports-plugin/src/main/java/org/apache/maven/report/projectinfo/TeamListReport.java Thu May 22 13:06:32 2014
@@ -624,7 +624,7 @@ public class TeamListReport
                     requiredHeaders.put( TIME_ZONE, Boolean.TRUE );
                 }
                 Properties properties = unit.getProperties();
-                boolean hasPicUrl = properties.contains( "picUrl" );
+                boolean hasPicUrl = properties.containsKey( "picUrl" );
                 if ( hasPicUrl )
                 {
                     requiredHeaders.put( IMAGE, Boolean.TRUE );