File tree 1 file changed +3
-3
lines changed
server/runtime/src/main/java/org/infinispan/quarkus/server/runtime/graal
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 19
19
import java .util .concurrent .ExecutorService ;
20
20
21
21
@ Substitute
22
- @ TargetClass (className = "org.infinispan.client.hotrod.impl.transport.netty.TransportHelper " )
22
+ @ TargetClass (className = "org.infinispan.client.hotrod.impl.transport.netty.DefaultTransportFactory " )
23
23
final class SubstituteTransportHelper {
24
24
25
25
@ Substitute
26
- static Class <? extends SocketChannel > socketChannel () {
26
+ public Class <? extends SocketChannel > socketChannelClass () {
27
27
return NioSocketChannel .class ;
28
28
}
29
29
30
30
@ Substitute
31
- static EventLoopGroup createEventLoopGroup (int maxExecutors , ExecutorService executorService ) {
31
+ public EventLoopGroup createEventLoopGroup (int maxExecutors , ExecutorService executorService ) {
32
32
return new NioEventLoopGroup (maxExecutors , executorService );
33
33
}
34
34
}
You can’t perform that action at this time.
0 commit comments