[#3598] If tables define their own comments, don't generate "This class is generated by jOOQ." in Javadocs
This commit is contained in:
parent
566e12e5e1
commit
d17ade77cf
@ -2906,12 +2906,13 @@ public class JavaGenerator extends AbstractGenerator {
|
||||
|
||||
protected void printClassJavadoc(JavaWriter out, String comment) {
|
||||
out.println("/**");
|
||||
out.println(" * This class is generated by jOOQ.");
|
||||
|
||||
if (comment != null && comment.length() > 0) {
|
||||
out.println(" *");
|
||||
printJavadocParagraph(out, comment, "");
|
||||
}
|
||||
else {
|
||||
out.println(" * This class is generated by jOOQ.");
|
||||
}
|
||||
|
||||
out.println(" */");
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user