mirror of
https://github.com/zaaarf/lillero-processor.git
synced 2024-11-13 01:29:21 +01:00
fix: constructor of generated objects should be public
This commit is contained in:
parent
fcd0cef951
commit
7ac0f5f700
1 changed files with 1 additions and 0 deletions
|
@ -212,6 +212,7 @@ public class LilleroProcessor extends AbstractProcessor {
|
|||
|
||||
//initialize the constructor builder
|
||||
MethodSpec.Builder constructorBuilder = MethodSpec.constructorBuilder();
|
||||
constructorBuilder.addModifiers(Modifier.PUBLIC);
|
||||
|
||||
List<VariableElement> methodFinders = new ArrayList<>();
|
||||
|
||||
|
|
Loading…
Reference in a new issue