We are using MOE 1.3.8.
You can reproduce the issue by creating a very simple class like this :
public class ConstructorFoo {
private final int x;
public ConstructorFoo(int x) {
this.x = x;
}
}
And by trying to get its constructor like this :
System.out.println("Constructors : " + Arrays.toString(ConstructorFoo.class.getDeclaredConstructors()));
It displays :
Constructors : []
Is this a known issue ? Did we miss something ?