File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
src/main/java/io/avaje/jsonb/stream Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 2121 <dependency >
2222 <groupId >io.helidon.webserver</groupId >
2323 <artifactId >helidon-webserver</artifactId >
24- <version >4.0.0-M2 </version >
24+ <version >4.0.0-RC1 </version >
2525 <scope >provided</scope >
2626 <optional >true</optional >
2727 </dependency >
Original file line number Diff line number Diff line change 11package io .avaje .jsonb .stream ;
22
3- import io .helidon .http .Http ;
4- import io .helidon .webserver .http .ServerResponse ;
5-
63import java .io .IOException ;
74import java .io .OutputStream ;
85
6+ import io .helidon .http .HeaderNames ;
7+ import io .helidon .webserver .http .ServerResponse ;
8+
99final class NimaJsonOutput implements JsonOutput {
1010
1111 private static final String CHUNKED = "chunked" ;
@@ -22,7 +22,7 @@ private OutputStream os() {
2222 if (os == null ) {
2323 if (!fixedLength ) {
2424 // going to use chunked content
25- res .header (Http . HeaderNames .TRANSFER_ENCODING , CHUNKED );
25+ res .header (HeaderNames .TRANSFER_ENCODING , CHUNKED );
2626 }
2727 os = res .outputStream ();
2828 }
You can’t perform that action at this time.
0 commit comments