io.github.kiryu1223.plugin.builder.AotBeanCreatorFactory Maven / Gradle / Ivy
package io.github.kiryu1223.plugin.builder;
import io.github.kiryu1223.drink.base.toBean.beancreator.AbsBeanCreator;
import io.github.kiryu1223.drink.base.toBean.beancreator.BeanCreatorFactory;
public class AotBeanCreatorFactory extends BeanCreatorFactory
{
@Override
protected AbsBeanCreator create(Class target)
{
return new AotFastCreator<>(target);
}
}