[jOOQ/jOOQ#10203] Bad Javadoc generated for Tables.java in the default schema

This commit is contained in:
Lukas Eder 2020-05-19 13:48:44 +02:00
parent e66abac092
commit 5c3906e48c

View File

@ -3182,7 +3182,7 @@ public class JavaGenerator extends AbstractGenerator {
printPackage(out, schema);
if (!kotlin) {
printClassJavadoc(out, "Convenience access to all tables in " + schema.getOutputName());
printClassJavadoc(out, "Convenience access to all tables in " + (StringUtils.isEmpty(schema.getOutputName()) ? "the default schema" : schema.getOutputName()));
printClassAnnotations(out, schema);
}