Skip to content

Commit 81fe165

Browse files
committed
fix param open api generation
1 parent b9b49b2 commit 81fe165

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

http-generator-core/src/main/java/io/avaje/http/generator/core/openapi/MethodParamDocBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public MethodParamDocBuilder(MethodDocBuilder methodDoc, ElementReader param) {
3232
this.paramType = param.paramType();
3333
this.paramName = param.paramName();
3434
this.varName = param.varName();
35-
this.rawType = param.rawType();
35+
this.rawType = param.type().full();
3636
this.element = param.element();
3737
}
3838

0 commit comments

Comments
 (0)