[jOOQ/jOOQ#17677] Copy paste error

This commit is contained in:
Lukas Eder 2024-11-27 17:09:04 +01:00
parent 87bdd75cca
commit 1817dfaf39

View File

@ -8026,7 +8026,7 @@ public class JavaGenerator extends AbstractGenerator {
log.warn("Ambiguous key name",
"The one-to-many key " + foreignKey
+ " generates an inbound key method name " + keyMethodName + " on table " + table
+ " which conflicts with the previously generated key method name for key " + previousKey
+ " which conflicts with the previously generated key method name for key " + previousKey + "."
+ " Use a custom generator strategy to disambiguate the method names for ForeignKeyDefinition, InverseForeignKeyDefinition, and/or ManyToManyKeyDefinition, or simply turn off the feature. More information here:\n"
+ " - https://www.jooq.org/doc/latest/manual/code-generation/codegen-generatorstrategy/\n"
+ " - https://www.jooq.org/doc/latest/manual/code-generation/codegen-matcherstrategy/\n"
@ -8105,6 +8105,7 @@ public class JavaGenerator extends AbstractGenerator {
+ " generates an inbound key method name " + keyMethodName + " on table " + table
+ " which conflicts with the previously generated key method name for key " + previousKey + "."
+ " Use a custom generator strategy to disambiguate the method names for ForeignKeyDefinition, InverseForeignKeyDefinition, and/or ManyToManyKeyDefinition, or simply turn off the feature. More information here:\n"
+ " - https://www.jooq.org/doc/latest/manual/code-generation/codegen-generatorstrategy/\n"
+ " - https://www.jooq.org/doc/latest/manual/code-generation/codegen-matcherstrategy/\n"
+ " - https://www.jooq.org/doc/latest/manual/code-generation/codegen-advanced/codegen-config-generate/codegen-implicit-join-paths/"
);