Polishing
This commit is contained in:
parent
75ab47b57c
commit
0ea4ee163c
|
|
@ -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();
|
||||
|
||||
|
|
|
|||
|
|
@ -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();
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue