Description
In InstanceManager.java, the method managedInjectedObject at line 1016 can throw an java.lang.NoSuchMethodException in case of extension of the InstanceManager.
I recommend to change the line 1016:
Method setIM = m_clazz.getDeclaredMethod("_setInstanceManager", new Class[]
);
by :
Method setIM = m_clazz.getDeclaredMethod("_setInstanceManager", new new Class[]
);
because iPOJO manipulation always produces a _setInstanceManager method with an InstanceManager.class attribute.