Skip to content

Commit

Permalink
GH-1517: Fix Javadoc, CheckStyle
Browse files Browse the repository at this point in the history
  • Loading branch information
garyrussell committed Oct 18, 2022
1 parent 76a4b87 commit 399eff9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Expand Up @@ -192,7 +192,7 @@ subprojects { subproject ->
}

// enable all compiler warnings; individual projects may customize further
ext.xLintArg = '-Xlint:all,-options,-processing'
ext.xLintArg = '-Xlint:all,-options,-processing,-deprecation'
[compileJava, compileTestJava]*.options*.compilerArgs = [xLintArg]

publishing {
Expand Down
Expand Up @@ -23,7 +23,7 @@
import org.springframework.util.Assert;

/**
* Implementation of {@link ContainerCustomizer<C>} providing the configuration of
* Implementation of {@link ContainerCustomizer} providing the configuration of
* multiple customizers at the same time.
*
* @param <C> the container type.
Expand All @@ -48,7 +48,7 @@ public CompositeContainerCustomizer(List<ContainerCustomizer<C>> customizers) {

@Override
public void configure(C container) {
customizers.forEach(c -> c.configure(container));
this.customizers.forEach(c -> c.configure(container));
}

}

0 comments on commit 399eff9

Please sign in to comment.