You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by kh...@apache.org on 2014/10/26 19:48:30 UTC

svn commit: r1634379 - /maven/jxr/trunk/maven-jxr-plugin/src/main/java/org/apache/maven/plugin/jxr/AbstractJxrReport.java

Author: khmarbaise
Date: Sun Oct 26 18:48:29 2014
New Revision: 1634379

URL: http://svn.apache.org/r1634379
Log:
[JXR-114]
 - Removed deprecated marked parameters.

Modified:
    maven/jxr/trunk/maven-jxr-plugin/src/main/java/org/apache/maven/plugin/jxr/AbstractJxrReport.java

Modified: maven/jxr/trunk/maven-jxr-plugin/src/main/java/org/apache/maven/plugin/jxr/AbstractJxrReport.java
URL: http://svn.apache.org/viewvc/maven/jxr/trunk/maven-jxr-plugin/src/main/java/org/apache/maven/plugin/jxr/AbstractJxrReport.java?rev=1634379&r1=1634378&r2=1634379&view=diff
==============================================================================
--- maven/jxr/trunk/maven-jxr-plugin/src/main/java/org/apache/maven/plugin/jxr/AbstractJxrReport.java (original)
+++ maven/jxr/trunk/maven-jxr-plugin/src/main/java/org/apache/maven/plugin/jxr/AbstractJxrReport.java Sun Oct 26 18:48:29 2014
@@ -138,14 +138,6 @@ public abstract class AbstractJxrReport
     protected List<MavenProject> reactorProjects;
 
     /**
-     * Whether to build an aggregated report at the root, or build individual reports.
-     *
-     * @deprecated since 2.3. Use the goals <code>jxr:aggregate</code> and <code>jxr:test-aggregate</code> instead.
-     */
-    @Parameter( defaultValue = "false" )
-    protected boolean aggregate;
-
-    /**
      * Whether to skip this execution.
      *
      * @since 2.3
@@ -641,6 +633,6 @@ public abstract class AbstractJxrReport
      */
     protected boolean isAggregate()
     {
-        return aggregate;
+        return false;
     }
 }