Fix deprecation warning
In MpiInstantiator, there is a deprecation warning for return clas.newInstance(); in method instantiate.
Replace by clas.getDeclaredConstructor().newInstance();
In MpiInstantiator, there is a deprecation warning for return clas.newInstance(); in method instantiate.
Replace by clas.getDeclaredConstructor().newInstance();