Polishing

This commit is contained in:
Sam Brannen
2022-07-15 15:28:47 +02:00
parent 77f8408e80
commit 1f3ea5133f
4 changed files with 10 additions and 11 deletions

View File

@@ -24,7 +24,8 @@ import org.assertj.core.api.AssertProvider;
import org.springframework.aot.agent.RecordedInvocation;
/**
* A wrapper for {@link RecordedInvocation} that is the starting point for {@code RuntimeHints} AssertJ assertions.
* A wrapper for {@link RecordedInvocation} that is the starting point for
* {@code RuntimeHints} AssertJ assertions.
*
* @author Brian Clozel
* @since 6.0

View File

@@ -34,15 +34,15 @@ import org.springframework.core.io.support.SpringFactoriesLoader;
import org.springframework.util.Assert;
/**
* AssertJ {@link org.assertj.core.api.Assert assertions} that can be applied to an {@link RuntimeHintsInvocations}.
* AssertJ {@link org.assertj.core.api.Assert assertions} that can be applied to
* {@link RuntimeHintsInvocations}.
*
* @author Brian Clozel
* @since 6.0
*/
public class RuntimeHintsInvocationsAssert extends AbstractAssert<RuntimeHintsInvocationsAssert, RuntimeHintsInvocations> {
List<Consumer<RuntimeHints>> configurers = new ArrayList<>();
private final List<Consumer<RuntimeHints>> configurers = new ArrayList<>();
RuntimeHintsInvocationsAssert(RuntimeHintsInvocations invocations) {
super(invocations, RuntimeHintsInvocationsAssert.class);
@@ -123,5 +123,4 @@ public class RuntimeHintsInvocationsAssert extends AbstractAssert<RuntimeHintsIn
return this;
}
}