Skip to content

Commit e6069bb

Browse files
committed
Update ControllerMethodWriter.java
1 parent 872bafa commit e6069bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ private void writeContextReturn() {
103103
} else if (MediaType.TEXT_PLAIN.equalsIgnoreCase(produces)) {
104104
writer.append(" res.writerContext().contentType(io.helidon.common.http.MediaType.TEXT_PLAIN);").eol();
105105
} else {
106-
writer.append( "res.writerContext().contentType(io.helidon.common.http.MediaType.parse(\"%s\"));", produces).eol();
106+
writer.append(" res.writerContext().contentType(io.helidon.common.http.MediaType.parse(\"%s\"));", produces).eol();
107107
}
108108
}
109109

0 commit comments

Comments
 (0)