We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3eb47c5 commit be2fa20Copy full SHA for be2fa20
src/main/java/org/apache/maven/plugins/javadoc/AbstractJavadocMojo.java
@@ -2968,14 +2968,11 @@ private String getTagletPath() throws MavenReportException {
2968
}
2969
2970
2971
- StringBuilder path = new StringBuilder();
2972
- path.append(StringUtils.join(pathParts.iterator(), File.pathSeparator));
2973
-
2974
- if (tagletpath != null && !tagletpath.isEmpty()) {
2975
- path.append(JavadocUtil.unifyPathSeparator(tagletpath));
+ if (StringUtils.isNotEmpty(tagletpath)) {
+ pathParts.addAll(Arrays.asList(JavadocUtil.splitPath(tagletpath)));
2976
2977
2978
- return path.toString();
+ return StringUtils.join(pathParts, File.pathSeparator);
2979
2980
2981
private Set<String> collectLinks() throws MavenReportException {
0 commit comments