From d3e689b79ec56fdfbbb63e85ea3838ebcfcf0024 Mon Sep 17 00:00:00 2001 From: Lukas Eder Date: Tue, 2 May 2023 16:35:50 +0200 Subject: [PATCH] [jOOQ/jOOQ#15005] Fix generated whitespace --- jOOQ-codegen/src/main/java/org/jooq/codegen/JavaGenerator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jOOQ-codegen/src/main/java/org/jooq/codegen/JavaGenerator.java b/jOOQ-codegen/src/main/java/org/jooq/codegen/JavaGenerator.java index 0b5065f24e..86b39434f9 100644 --- a/jOOQ-codegen/src/main/java/org/jooq/codegen/JavaGenerator.java +++ b/jOOQ-codegen/src/main/java/org/jooq/codegen/JavaGenerator.java @@ -6404,7 +6404,7 @@ public class JavaGenerator extends AbstractGenerator { visibility(), className, Table.class, Record.class, ForeignKey.class, Record.class, recordType, InverseForeignKey.class, Record.class, recordType, className, Path.class, recordType); } else { - out.println("%s static class %sPath extends %s implements %s<%s> {", visibility(), className, className, Path.class, recordType); + out.println("%sstatic class %sPath extends %s implements %s<%s> {", visibility(), className, className, Path.class, recordType); out.println("%s %sPath(%s path, %s childPath, %s parentPath) {", visibility(), Record.class, className, Table.class, ForeignKey.class, recordType, InverseForeignKey.class, recordType); out.println("super(path, childPath, parentPath);"); out.println("}");