GH-1517: Fix Javadoc, CheckStyle

This commit is contained in:
Gary Russell
2022-10-18 13:18:47 -04:00
parent 0bc387f919
commit 2a4a0ecb6b
2 changed files with 3 additions and 3 deletions

View File

@@ -198,7 +198,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 {

View File

@@ -23,7 +23,7 @@ import org.springframework.amqp.rabbit.listener.MessageListenerContainer;
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.
@@ -48,7 +48,7 @@ public class CompositeContainerCustomizer<C extends MessageListenerContainer> im
@Override
public void configure(C container) {
customizers.forEach(c -> c.configure(container));
this.customizers.forEach(c -> c.configure(container));
}
}