ppodgorsek / spring-test-dbunit

Integration between the Spring testing framework and DBUnit
Apache License 2.0
41 stars 6 forks source link

Avoid warnings on Class.newInstance() #146

Closed ppodgorsek closed 4 years ago

ppodgorsek commented 4 years ago

Calls to Class.newInstance() should be replaced by Class.getDeclaredConstructor().newInstance() to avoid warnings.

ppodgorsek commented 4 years ago

Fixed