mirror of
https://github.com/spring-projects/spring-framework
synced 2026-06-08 17:33:33 +00:00
Harmonize BeanRegistrationAotContribution class names
This commit is contained in:
+3
-3
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user