fix: various typos concerning mapping

This commit is contained in:
zaaarf 2023-03-27 22:36:14 +02:00
parent 0213e930b6
commit bcb2e06592
No known key found for this signature in database
GPG key ID: 82240E075E31FA4C
3 changed files with 3 additions and 3 deletions

View file

@ -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;
}

View file

@ -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
);

View file

@ -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
);