mirror of
https://github.com/zaaarf/lillero-processor.git
synced 2024-11-22 15:54:48 +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<ExecutableElement> matchedInjectors = new HashSet<>();
|
||||||
HashSet<VariableElement> matchedMethodFinders = new HashSet<>();
|
HashSet<VariableElement> matchedMethodFinders = new HashSet<>();
|
||||||
|
|
||||||
|
int iterationNumber = 1;
|
||||||
for(ExecutableElement tg : targets) {
|
for(ExecutableElement tg : targets) {
|
||||||
Target[] mtgAnn = tg.getAnnotationsByType(Target.class);
|
Target[] mtgAnn = tg.getAnnotationsByType(Target.class);
|
||||||
int iterationNumber = 1;
|
|
||||||
for(Target targetAnn : mtgAnn) {
|
for(Target targetAnn : mtgAnn) {
|
||||||
List<ExecutableElement> injectorCandidates = injectors;
|
List<ExecutableElement> injectorCandidates = injectors;
|
||||||
List<VariableElement> finderCandidates = methodFinders;
|
List<VariableElement> finderCandidates = methodFinders;
|
||||||
|
|
Loading…
Reference in a new issue