Change reflection config to match constructor (#11453)
Motivation: We need to change the reflection config to match the constructor that is used Modifications: Adjust config Result: Graal PR jobs pass again
This commit is contained in:
parent
cb82277d36
commit
5014f6d7a6
@ -2,7 +2,7 @@
|
||||
{
|
||||
"name": "io.netty.channel.socket.nio.NioDatagramChannel",
|
||||
"methods": [
|
||||
{ "name": "<init>", "parameterTypes": [] }
|
||||
{ "name": "<init>", "parameterTypes": [ "io.netty.channel.EventLoop"] }
|
||||
]
|
||||
}
|
||||
]
|
||||
|
@ -2,7 +2,7 @@
|
||||
{
|
||||
"name": "io.netty.channel.socket.nio.NioServerSocketChannel",
|
||||
"methods": [
|
||||
{ "name": "<init>", "parameterTypes": [] }
|
||||
{ "name": "<init>", "parameterTypes": [ "io.netty.channel.EventLoop", "io.netty.channel.EventLoopGroup" ] }
|
||||
]
|
||||
},
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user