Polishing

This commit is contained in:
Phillip Webb 2022-07-18 10:54:30 +01:00
parent 75ab47b57c
commit 0ea4ee163c
3 changed files with 4 additions and 4 deletions

View File

@ -36,7 +36,7 @@ public interface BeanFactoryInitializationCode {
/**
* Return the {@link GeneratedMethods} being used by the Initializing code.
* @return the method generator
* @return the generated methods
*/
GeneratedMethods getMethods();

View File

@ -40,7 +40,7 @@ public interface BeanRegistrationCode {
/**
* Return a {@link GeneratedMethods} being used by the registrations code.
* @return the method generator
* @return the generated methods
*/
GeneratedMethods getMethods();

View File

@ -52,12 +52,12 @@ class BeanRegistrationCodeGenerator implements BeanRegistrationCode {
private final BeanRegistrationCodeFragments codeFragments;
BeanRegistrationCodeGenerator(ClassName className, GeneratedMethods methodGenerator,
BeanRegistrationCodeGenerator(ClassName className, GeneratedMethods generatedMethods,
RegisteredBean registeredBean, Executable constructorOrFactoryMethod,
BeanRegistrationCodeFragments codeFragments) {
this.className = className;
this.generatedMethods = methodGenerator;
this.generatedMethods = generatedMethods;
this.registeredBean = registeredBean;
this.constructorOrFactoryMethod = constructorOrFactoryMethod;
this.codeFragments = codeFragments;