This is an automated email from the ASF dual-hosted git repository.
rfscholte pushed a commit to branch MJAVADOC-607
in repository https://gitbox.apache.org/repos/asf/maven-javadoc-plugin.git
The following commit(s) were added to refs/heads/MJAVADOC-607 by this push:
new a90990d Fix checkstyle reported error
a90990d is described below
commit a90990d0c3400ff4e23a4526fac7323fbfbe2d3b
Author: rfscholte <[email protected]>
AuthorDate: Sun Jul 28 18:56:14 2019 +0200
Fix checkstyle reported error
---
src/main/java/org/apache/maven/plugins/javadoc/AbstractJavadocMojo.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/src/main/java/org/apache/maven/plugins/javadoc/AbstractJavadocMojo.java
b/src/main/java/org/apache/maven/plugins/javadoc/AbstractJavadocMojo.java
index b38e315..9250cd0 100644
--- a/src/main/java/org/apache/maven/plugins/javadoc/AbstractJavadocMojo.java
+++ b/src/main/java/org/apache/maven/plugins/javadoc/AbstractJavadocMojo.java
@@ -6349,7 +6349,7 @@ public abstract class AbstractJavadocMojo
// Even when link produces error it should be kept in the set
because the error might be caused by
// incomplete redirect configuration on the server side.
// This partially restores the previous behaviour before fix
for MJAVADOC-427
- redirectLinks.add(link);
+ redirectLinks.add( link );
}
}
return redirectLinks;