Fix typo in log message

Spotted locally; there is a double negation in this sentence:

> This code generation run has not produced any file modifications.
> This means, the schema has not changed, and no other parameters (jOOQ version, driver version, database version,
> and any configuration elements) have not changed either.
This commit is contained in:
Per Lundberg 2022-08-09 15:43:33 +03:00 committed by GitHub
parent 69844c3180
commit 8801dbeebb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -530,7 +530,7 @@ public class JavaGenerator extends AbstractGenerator {
"No modified files",
"This code generation run has not produced any file modifications.\n"
+ "This means, the schema has not changed, and no other parameters (jOOQ version, driver version, database version,\n"
+ "and any configuration elements) have not changed either.\n\n"
+ "and any configuration elements) have changed either.\n\n"
+ "In automated builds, it is recommended to prevent unnecessary code generation runs. This run took: " + StopWatch.format(time) + "\n"
+ "Possible means to prevent this:\n"
+ "- Use manual code generation and check in generated sources: https://www.jooq.org/doc/latest/manual/code-generation/codegen-version-control/\n"