Skip to content

Commit 83ca5db

Browse files
committed
Fix whitespace in generated code only
1 parent 3776763 commit 83ca5db

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

http-generator-helidon/src/main/java/io/avaje/http/generator/helidon/ControllerWriter.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,9 @@ private void writeClassStart() {
8080
writer.append(", Validator validator");
8181
}
8282
writer.append(") {").eol();
83-
writer.append(" this.%s = %s;", controllerName, controllerName).eol();
83+
writer.append(" this.%s = %s;", controllerName, controllerName).eol();
8484
if (reader.isIncludeValidator()) {
85-
writer.append(" this.validator = validator;").eol();
85+
writer.append(" this.validator = validator;").eol();
8686
}
8787
writer.append(" }").eol().eol();
8888
}

http-generator-javalin/src/main/java/io/avaje/http/generator/javalin/ControllerWriter.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ private void writeClassStart() {
6666
writer.append(", Validator validator");
6767
}
6868
writer.append(") {").eol();
69-
writer.append(" this.%s = %s;", controllerName, controllerName).eol();
69+
writer.append(" this.%s = %s;", controllerName, controllerName).eol();
7070
if (reader.isIncludeValidator()) {
71-
writer.append(" this.validator = validator;").eol();
71+
writer.append(" this.validator = validator;").eol();
7272
}
7373
writer.append(" }").eol().eol();
7474
}

http-generator-jex/src/main/java/io/avaje/http/generator/jex/ControllerWriter.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,9 @@ private void writeClassStart() {
6868
writer.append(", Validator validator");
6969
}
7070
writer.append(") {").eol();
71-
writer.append(" this.%s = %s;", controllerName, controllerName).eol();
71+
writer.append(" this.%s = %s;", controllerName, controllerName).eol();
7272
if (reader.isIncludeValidator()) {
73-
writer.append(" this.validator = validator;").eol();
73+
writer.append(" this.validator = validator;").eol();
7474
}
7575
writer.append(" }").eol().eol();
7676
}

0 commit comments

Comments
 (0)