File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed
src/main/java/org/apache/maven/plugins/javadoc Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -2968,14 +2968,11 @@ private String getTagletPath() throws MavenReportException {
2968
2968
}
2969
2969
}
2970
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 ));
2971
+ if (StringUtils .isNotEmpty (tagletpath )) {
2972
+ pathParts .addAll (Arrays .asList (JavadocUtil .splitPath (tagletpath )));
2976
2973
}
2977
2974
2978
- return path . toString ( );
2975
+ return StringUtils . join ( pathParts , File . pathSeparator );
2979
2976
}
2980
2977
2981
2978
private Set <String > collectLinks () throws MavenReportException {
You can’t perform that action at this time.
0 commit comments