mirror of
https://github.com/zaaarf/lillero-processor.git
synced 2024-11-14 05:19:20 +01:00
fix: use non obfuscated name to look up obfuscation (duh)
This commit is contained in:
parent
d966e7a37b
commit
44cec29b1c
1 changed files with 1 additions and 1 deletions
|
@ -78,7 +78,7 @@ public class FieldContainer {
|
||||||
this.descriptor = descriptorFromElement(this.elem, env);
|
this.descriptor = descriptorFromElement(this.elem, env);
|
||||||
}
|
}
|
||||||
this.descriptorObf = mapper == null ? this.descriptor : mapper.obfuscateType(Type.getType(this.descriptor)).getDescriptor();
|
this.descriptorObf = mapper == null ? this.descriptor : mapper.obfuscateType(Type.getType(this.descriptor)).getDescriptor();
|
||||||
this.nameObf = findMemberName(parent.fqnObf, this.name, null, mapper);
|
this.nameObf = findMemberName(parent.fqn, this.name, null, mapper);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue