File tree Expand file tree Collapse file tree 1 file changed +1
-6
lines changed
http-server-netty/src/main/java/io/micronaut/http/server/netty/binders Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Original file line number Diff line number Diff line change 38
38
import io .micronaut .http .body .MessageBodyReader ;
39
39
import io .micronaut .http .codec .CodecException ;
40
40
import io .micronaut .http .context .ServerHttpRequestContext ;
41
- import io .micronaut .http .netty .body .AvailableNettyByteBody ;
41
+ import io .micronaut .http .netty .body .NettyByteBodyFactory ;
42
42
import io .micronaut .http .server .netty .FormDataHttpContentProcessor ;
43
43
import io .micronaut .http .server .netty .FormRouteCompleter ;
44
44
import io .micronaut .http .server .netty .MicronautHttpData ;
45
45
import io .micronaut .http .server .netty .NettyHttpRequest ;
46
- import io .micronaut .http .server .netty .NettyHttpServer ;
47
46
import io .micronaut .http .server .netty .configuration .NettyHttpServerConfiguration ;
48
47
import io .micronaut .http .server .netty .converters .NettyConverters ;
49
48
import io .micronaut .web .router .RouteAttributes ;
54
53
import io .netty .buffer .CompositeByteBuf ;
55
54
import io .netty .handler .codec .http .DefaultLastHttpContent ;
56
55
import io .netty .handler .codec .http .multipart .InterfaceHttpData ;
57
- import org .slf4j .Logger ;
58
- import org .slf4j .LoggerFactory ;
59
56
60
57
import java .util .ArrayList ;
61
58
import java .util .List ;
65
62
@ Internal
66
63
final class NettyBodyAnnotationBinder <T > extends DefaultBodyAnnotationBinder <T > {
67
64
68
- private static final Logger LOG = LoggerFactory .getLogger (NettyHttpServer .class );
69
-
70
65
final NettyHttpServerConfiguration httpServerConfiguration ;
71
66
final MessageBodyHandlerRegistry bodyHandlerRegistry ;
72
67
You can’t perform that action at this time.
0 commit comments