Skip to content

Commit 747a690

Browse files
committed
format
1 parent de550e6 commit 747a690

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

http-generator-core/src/main/java/io/avaje/http/generator/core/MethodParam.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public void buildApiDocumentation(MethodDocBuilder methodDoc) {
5151
.buildApiDocumentation(methodDoc);
5252
});
5353
}
54-
}
54+
}
5555

5656
public boolean isBody() {
5757
return elementParam.paramType() == ParamType.BODY;

tests/test-javalin-jsonb/src/main/java/org/example/myapp/web/GetBeanForm.java

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,11 @@ public void setAddresses(List<String> addresses) {
6060
this.addresses = addresses;
6161
}
6262

63-
public String getHead() {
64-
return head;}
63+
public String getHead() {
64+
return head;
65+
}
6566

66-
public void setHead(String head) {
67-
this.head = head;}
67+
public void setHead(String head) {
68+
this.head = head;
69+
}
6870
}

0 commit comments

Comments
 (0)