mirror of
https://github.com/zaaarf/lillero-processor.git
synced 2024-11-13 01:39:22 +01:00
fix: do not reset injector counter every time
This commit is contained in:
parent
1303948c94
commit
673b5064e7
1 changed files with 1 additions and 1 deletions
|
@ -258,9 +258,9 @@ public class LilleroProcessor extends AbstractProcessor {
|
|||
HashSet<ExecutableElement> matchedInjectors = new HashSet<>();
|
||||
HashSet<VariableElement> matchedMethodFinders = new HashSet<>();
|
||||
|
||||
int iterationNumber = 1;
|
||||
for(ExecutableElement tg : targets) {
|
||||
Target[] mtgAnn = tg.getAnnotationsByType(Target.class);
|
||||
int iterationNumber = 1;
|
||||
for(Target targetAnn : mtgAnn) {
|
||||
List<ExecutableElement> injectorCandidates = injectors;
|
||||
List<VariableElement> finderCandidates = methodFinders;
|
||||
|
|
Loading…
Reference in a new issue