Browse Source

Merge branch '1.3.x' into 1.4.x

Closes gh-1995
pull/1998/head
Joe Grandja 8 months ago
parent
commit
20aca47d12
  1. 1
      buildSrc/src/main/java/org/springframework/gradle/docs/SpringJavadocApiPlugin.java

1
buildSrc/src/main/java/org/springframework/gradle/docs/SpringJavadocApiPlugin.java

@ -79,6 +79,7 @@ public class SpringJavadocApiPlugin implements Plugin<Project> {
public void setExcludes(String... excludes) { public void setExcludes(String... excludes) {
if (excludes == null) { if (excludes == null) {
this.excludes = Collections.emptySet(); this.excludes = Collections.emptySet();
return;
} }
this.excludes = new HashSet<>(excludes.length); this.excludes = new HashSet<>(excludes.length);
for (String exclude : excludes) { for (String exclude : excludes) {

Loading…
Cancel
Save