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:
Norman Maurer 2021-07-05 21:05:06 +02:00 committed by GitHub
parent cb82277d36
commit 5014f6d7a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
{
"name": "io.netty.channel.socket.nio.NioDatagramChannel",
"methods": [
{ "name": "<init>", "parameterTypes": [] }
{ "name": "<init>", "parameterTypes": [ "io.netty.channel.EventLoop"] }
]
}
]

View File

@ -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" ] }
]
},
{