Skip to content

Commit

Permalink
feat: use includes and excludes to specify files to scan
Browse files Browse the repository at this point in the history
This is to implement mojohaus#12
  • Loading branch information
juliangp committed Jan 18, 2022
1 parent f01db6f commit 11a9ab2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/codehaus/mojo/taglist/TagListReport.java
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,7 @@ String getIncludesCommaSeparated()
if ( includes != null ) {
return String.join(",", includes);
} else {
return null;
return "";
}
}

Expand All @@ -542,7 +542,7 @@ String getExcludesCommaSeparated()
if ( excludes != null ) {
return String.join(",", excludes);
} else {
return null;
return "";
}
}

Expand Down

0 comments on commit 11a9ab2

Please # to comment.