Skip to content

Commit

Permalink
Fix Javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
rfscholte committed Sep 22, 2018
1 parent ef8bb96 commit 1eb6203
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 8 deletions.
Expand Up @@ -261,9 +261,6 @@ private static boolean isReportPluginJavaDocPlugin( String pluginArtifactId, Rep
* Generates the site structure using the project hierarchy (project and its modules) or using the
* distributionManagement elements from the pom.xml.
*
* @todo come from site plugin!
* @see org.apache.maven.plugins.site.SiteStageMojo#getStructure(MavenProject project, boolean ignoreMissingSiteUrl
* )
* @param project
* @param ignoreMissingSiteUrl
* @return the structure relative path
Expand All @@ -272,6 +269,8 @@ private static boolean isReportPluginJavaDocPlugin( String pluginArtifactId, Rep
protected static String getStructure( MavenProject project, boolean ignoreMissingSiteUrl )
throws IOException
{
// @todo come from site plugin!
// @see o.a.m.p.site.SiteStageMojo#getStructure(MavenProject project, boolean ignoreMissingSiteUrl )
if ( project.getDistributionManagement() == null )
{
String hierarchy = project.getName();
Expand Down
4 changes: 2 additions & 2 deletions maven-jxr/src/main/java/org/apache/maven/jxr/JXR.java
Expand Up @@ -129,7 +129,7 @@ public void processPath( PackageManager packageManager, Path sourceDir, String b
* Check to see if the file is a Java source file.
*
* @param filename The name of the file to check
* @return <code>true</true> if the file is a Java file
* @return <code>true</code> if the file is a Java file
*/
public static boolean isJavaFile( String filename )
{
Expand All @@ -140,7 +140,7 @@ public static boolean isJavaFile( String filename )
* Check to see if the file is an HTML file.
*
* @param filename The name of the file to check
* @return <code>true</true> if the file is an HTML file
* @return <code>true</code> if the file is an HTML file
*/
public static boolean isHtmlFile( String filename )
{
Expand Down
Expand Up @@ -72,11 +72,11 @@
* <pre>
* htmlFilter
* |__
* ongoingMultiLineCommentFilter -> uriFilter
* ongoingMultiLineCommentFilter -&gt; uriFilter
* |__
* inlineCommentFilter
* |__
* beginMultiLineCommentFilter -> ongoingMultiLineCommentFilter
* beginMultiLineCommentFilter -&gt; ongoingMultiLineCommentFilter
* |__
* stringFilter
* |__
Expand Down
Expand Up @@ -23,7 +23,6 @@
* put your documentation comment here
*
* @author jvanzyl
* @created February 23, 2002
*/
public abstract class BaseType
{
Expand Down

0 comments on commit 1eb6203

Please sign in to comment.