fix proxy mapper bug (#11507)

This commit is contained in:
zhanghong 2023-12-15 15:42:01 +08:00 committed by GitHub
parent 06edd123f9
commit d84a566235
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -39,7 +39,7 @@ public class MapperProxy implements InvocationHandler {
private Mapper mapper;
private static final Map<String, MapperProxy> SINGLE_MAPPER_PROXY_MAP = new ConcurrentHashMap<>(16);
private static final Map<String, Mapper> SINGLE_MAPPER_PROXY_MAP = new ConcurrentHashMap<>(16);
public <R> R createProxy(Mapper mapper) {
this.mapper = mapper;