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

@@ -61,17 +61,17 @@ class RSocketExchangeBeanRegistrationAotProcessor implements BeanRegistrationAot
});
}
if (!exchangeInterfaces.isEmpty()) {
return new RSocketExchangeBeanRegistrationContribution(exchangeInterfaces);
return new AotContribution(exchangeInterfaces);
}
return null;
}
private static class RSocketExchangeBeanRegistrationContribution implements BeanRegistrationAotContribution {
private static class AotContribution implements BeanRegistrationAotContribution {
private final Set<Class<?>> rSocketExchangeInterfaces;
public RSocketExchangeBeanRegistrationContribution(Set<Class<?>> rSocketExchangeInterfaces) {
public AotContribution(Set<Class<?>> rSocketExchangeInterfaces) {
this.rSocketExchangeInterfaces = rSocketExchangeInterfaces;
}