make generatePojoMultiConstructor protected inline with it's javadoc

This commit is contained in:
Kaan Ozdokmeci 2019-07-23 19:47:08 +03:00
parent 7a3374f28d
commit e8e230ae2c

View File

@ -3328,7 +3328,7 @@ public class JavaGenerator extends AbstractGenerator {
/**
* Subclasses may override this method to provide their own pojo copy constructors.
*/
private void generatePojoMultiConstructor(Definition tableOrUDT, JavaWriter out) {
protected void generatePojoMultiConstructor(Definition tableOrUDT, JavaWriter out) {
final String className = getStrategy().getJavaClassName(tableOrUDT, Mode.POJO);
int maxLength = 0;