We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 872bafa commit e6069bbCopy full SHA for e6069bb
http-generator-helidon/src/main/java/io/avaje/http/generator/helidon/ControllerMethodWriter.java
@@ -103,7 +103,7 @@ private void writeContextReturn() {
103
} else if (MediaType.TEXT_PLAIN.equalsIgnoreCase(produces)) {
104
writer.append(" res.writerContext().contentType(io.helidon.common.http.MediaType.TEXT_PLAIN);").eol();
105
} else {
106
- writer.append( "res.writerContext().contentType(io.helidon.common.http.MediaType.parse(\"%s\"));", produces).eol();
+ writer.append(" res.writerContext().contentType(io.helidon.common.http.MediaType.parse(\"%s\"));", produces).eol();
107
}
108
109
0 commit comments