This commit is contained in:
Johnny Lim
2022-08-31 23:59:51 +09:00
parent 2ecc37fbef
commit 706c1ec8dd
5 changed files with 7 additions and 7 deletions

View File

@@ -478,15 +478,15 @@ class BeanDefinitionPropertiesCodeGeneratorTests {
static class PropertyValuesFactoryBean implements FactoryBean<String> {
private Class<?> prefix;
private String prefix;
private String name;
public Class<?> getPrefix() {
public String getPrefix() {
return this.prefix;
}
public void setPrefix(Class<?> prefix) {
public void setPrefix(String prefix) {
this.prefix = prefix;
}