mirror of
https://github.com/Eaglercraft-TeaVM-Fork/eagler-teavm.git
synced 2024-12-22 08:14:09 -08:00
Copy parameter annotations when renaming a class
This commit is contained in:
parent
ae1ec8ffe5
commit
d1fa57210e
|
@ -129,6 +129,10 @@ public class ClassRefsRenamer extends AbstractInstructionVisitor {
|
|||
renamedMethod.setLevel(method.getLevel());
|
||||
renamedMethod.setProgram(method.getProgram());
|
||||
rename(method.getAnnotations(), renamedMethod.getAnnotations());
|
||||
for (int i = 0; i < method.parameterCount(); ++i) {
|
||||
rename(method.parameterAnnotation(i), renamedMethod.parameterAnnotation(i));
|
||||
}
|
||||
|
||||
if (renamedMethod.getProgram() != null) {
|
||||
rename(renamedMethod.getProgram());
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user