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 {
29682968 }
29692969 }
29702970
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 )));
29762973 }
29772974
2978- return path . toString ( );
2975+ return StringUtils . join ( pathParts , File . pathSeparator );
29792976 }
29802977
29812978 private Set <String > collectLinks () throws MavenReportException {
You can’t perform that action at this time.
0 commit comments