mirror of
https://github.com/zaaarf/lillero-processor.git
synced 2024-11-13 01:29:21 +01:00
fix: various typos concerning mapping
This commit is contained in:
parent
0213e930b6
commit
bcb2e06592
3 changed files with 3 additions and 3 deletions
|
@ -84,7 +84,7 @@ public class ClassContainer {
|
|||
}
|
||||
this.fqn = newFQN.toString();
|
||||
} else this.fqn = fqn;
|
||||
this.fqnObf = findClassName(fqn, mapper);
|
||||
this.fqnObf = findClassName(this.fqn, mapper);
|
||||
this.elem = elem;
|
||||
}
|
||||
|
||||
|
|
|
@ -87,7 +87,7 @@ public class FieldContainer {
|
|||
Find f = finder.getAnnotation(Find.class);
|
||||
|
||||
ClassContainer parent = ClassContainer.findOrFallback(
|
||||
ClassContainer.from(patchAnn, Patch::value, patchAnn.className(), env, null),
|
||||
ClassContainer.from(patchAnn, Patch::value, patchAnn.className(), env, mapper),
|
||||
f, env, mapper
|
||||
);
|
||||
|
||||
|
|
|
@ -92,7 +92,7 @@ public class MethodContainer {
|
|||
//the parent always has a @Patch annotation
|
||||
Patch patchAnn = stub.getEnclosingElement().getAnnotation(Patch.class);
|
||||
ClassContainer parent = ClassContainer.findOrFallback(
|
||||
ClassContainer.from(patchAnn, Patch::value, patchAnn.className(), env, null),
|
||||
ClassContainer.from(patchAnn, Patch::value, patchAnn.className(), env, mapper),
|
||||
f, env, mapper
|
||||
);
|
||||
|
||||
|
|
Loading…
Reference in a new issue