in src/main/java/org/apache/parquet/format/event/Consumers.java [191:199]
protected T newObject() {
try {
return c.newInstance();
} catch (InstantiationException e) {
throw new RuntimeException(c.getName(), e);
} catch (IllegalAccessException e) {
throw new RuntimeException(c.getName(), e);
}
}