Annotations on methods parameters are not moved on public methods after manipulation ------------------------------------------------------------------------------------
Key: FELIX-2542 URL: https://issues.apache.org/jira/browse/FELIX-2542 Project: Felix Issue Type: Bug Components: iPOJO Affects Versions: iPOJO-1.6.0 Environment: Win xp, java 1.6 Reporter: Nicolas Dumont Priority: Minor The iPojo byte code manipulation replace real public method with private one, and annotation on methods are moved to the new public methods. But this behavior is not used for parameters annotations. For exemple : public class MyClass { @MyAnnotation public void myMethod(@MyParameterAnnotation int param) { //my code here } } is transformed into: public class MyClass { @MyAnnotation public void myMethod(int param) { // iPojo code here } private void _myMethod(@MyParameterAnnotation int param) { // my code here } It should have been transformed into: public class MyClass { @MyAnnotation public void myMethod(@MyParameterAnnotation int param) { // iPojo code here } private void _myMethod(int param) { // my code here } -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.