You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2015/12/11 19:31:58 UTC

svn commit: r1719487 - in /maven/doxia/doxia-sitetools/trunk/doxia-integration-tools/src/main/java/org/apache/maven/doxia/tools: DefaultSiteTool.java SiteTool.java

Author: hboutemy
Date: Fri Dec 11 18:31:58 2015
New Revision: 1719487

URL: http://svn.apache.org/viewvc?rev=1719487&view=rev
Log:
[DOXIASITETOOLS-123] removed long deprecated SiteTool API

Modified:
    maven/doxia/doxia-sitetools/trunk/doxia-integration-tools/src/main/java/org/apache/maven/doxia/tools/DefaultSiteTool.java
    maven/doxia/doxia-sitetools/trunk/doxia-integration-tools/src/main/java/org/apache/maven/doxia/tools/SiteTool.java

Modified: maven/doxia/doxia-sitetools/trunk/doxia-integration-tools/src/main/java/org/apache/maven/doxia/tools/DefaultSiteTool.java
URL: http://svn.apache.org/viewvc/maven/doxia/doxia-sitetools/trunk/doxia-integration-tools/src/main/java/org/apache/maven/doxia/tools/DefaultSiteTool.java?rev=1719487&r1=1719486&r2=1719487&view=diff
==============================================================================
--- maven/doxia/doxia-sitetools/trunk/doxia-integration-tools/src/main/java/org/apache/maven/doxia/tools/DefaultSiteTool.java (original)
+++ maven/doxia/doxia-sitetools/trunk/doxia-integration-tools/src/main/java/org/apache/maven/doxia/tools/DefaultSiteTool.java Fri Dec 11 18:31:58 2015
@@ -708,31 +708,6 @@ public class DefaultSiteTool
         }
     }
 
-    /**
-     * {@inheritDoc}
-     * @deprecated Please use
-     *      {@link #populateParentMenu(DecorationModel, Locale, MavenProject, MavenProject, boolean)} instead
-     */
-    public void populateProjectParentMenu( DecorationModel decorationModel, Locale locale, MavenProject project,
-                                           MavenProject parentProject, boolean keepInheritedRefs )
-    {
-        populateParentMenu( decorationModel, locale, project, parentProject, keepInheritedRefs );
-    }
-
-    /**
-     * {@inheritDoc}
-     * @deprecated Please use
-     *      {@link #populateModulesMenu(MavenProject, List, ArtifactRepository, DecorationModel, Locale, boolean)}
-     *      instead
-     */
-    public void populateModules( MavenProject project, List<MavenProject> reactorProjects,
-                                 ArtifactRepository localRepository, DecorationModel decorationModel, Locale locale,
-                                 boolean keepInheritedRefs )
-        throws SiteToolException
-    {
-        populateModulesMenu( project, reactorProjects, localRepository, decorationModel, locale, keepInheritedRefs );
-    }
-
     /** {@inheritDoc} */
     public void populateModulesMenu( MavenProject project, List<MavenProject> reactorProjects,
                                      ArtifactRepository localRepository, DecorationModel decorationModel,

Modified: maven/doxia/doxia-sitetools/trunk/doxia-integration-tools/src/main/java/org/apache/maven/doxia/tools/SiteTool.java
URL: http://svn.apache.org/viewvc/maven/doxia/doxia-sitetools/trunk/doxia-integration-tools/src/main/java/org/apache/maven/doxia/tools/SiteTool.java?rev=1719487&r1=1719486&r2=1719487&view=diff
==============================================================================
--- maven/doxia/doxia-sitetools/trunk/doxia-integration-tools/src/main/java/org/apache/maven/doxia/tools/SiteTool.java (original)
+++ maven/doxia/doxia-sitetools/trunk/doxia-integration-tools/src/main/java/org/apache/maven/doxia/tools/SiteTool.java Fri Dec 11 18:31:58 2015
@@ -221,38 +221,6 @@ public interface SiteTool
                              MavenProject parentProject, boolean keepInheritedRefs );
 
     /**
-     * Populate the parent menu part of the decoration model.
-     *
-     * @param decorationModel the Doxia DecorationModel, not null.
-     * @param locale the locale used for the i18n in DecorationModel. If null, using the default locale in the jvm.
-     * @param project a Maven project, not null.
-     * @param parentProject a Maven parent project, not null.
-     * @param keepInheritedRefs used for inherited references.
-     * @deprecated Please use
-     *      {@link #populateParentMenu(DecorationModel, Locale, MavenProject, MavenProject, boolean)} instead
-     */
-    void populateProjectParentMenu( DecorationModel decorationModel, Locale locale, MavenProject project,
-                                    MavenProject parentProject, boolean keepInheritedRefs );
-
-    /**
-     * Populate the modules menu part of the decoration model.
-     *
-     * @param project a Maven project, not null.
-     * @param reactorProjects the Maven reactor projects, not null.
-     * @param localRepository the Maven local repository, not null.
-     * @param decorationModel the Doxia site descriptor model, not null.
-     * @param locale the locale used for the i18n in DecorationModel. If null, using the default locale in the jvm.
-     * @param keepInheritedRefs used for inherited references.
-     * @throws SiteToolException if any
-     * @deprecated Please use
-     *      {@link #populateModulesMenu(MavenProject, List, ArtifactRepository, DecorationModel, Locale, boolean)}
-     *      instead
-     */
-    void populateModules( MavenProject project, List<MavenProject> reactorProjects, ArtifactRepository localRepository,
-                          DecorationModel decorationModel, Locale locale, boolean keepInheritedRefs )
-        throws SiteToolException;
-
-    /**
      * Populate the modules menu part of the decoration model.
      *
      * @param project a Maven project, not null.