Harmonize BeanRegistrationAotContribution class names

This commit is contained in:
Stéphane Nicoll
2023-10-17 12:37:52 +02:00
parent 9465ff0334
commit 6efc99fdd8
5 changed files with 16 additions and 16 deletions

View File

@@ -59,17 +59,17 @@ class HttpExchangeBeanRegistrationAotProcessor implements BeanRegistrationAotPro
});
}
if (!exchangeInterfaces.isEmpty()) {
return new HttpExchangeBeanRegistrationAotContribution(exchangeInterfaces);
return new AotContribution(exchangeInterfaces);
}
return null;
}
private static class HttpExchangeBeanRegistrationAotContribution implements BeanRegistrationAotContribution {
private static class AotContribution implements BeanRegistrationAotContribution {
private final List<Class<?>> httpExchangeInterfaces;
public HttpExchangeBeanRegistrationAotContribution(List<Class<?>> httpExchangeInterfaces) {
public AotContribution(List<Class<?>> httpExchangeInterfaces) {
this.httpExchangeInterfaces = httpExchangeInterfaces;
}