Remove unused lastReadInvokerPair field in ReflectivePropertyAccessor

This commit is contained in:
Sam Brannen 2024-03-05 12:55:30 +01:00
parent ddab971fca
commit 1fa6ac30b5
1 changed files with 1 additions and 7 deletions

View File

@ -85,16 +85,13 @@ public class ReflectivePropertyAccessor implements PropertyAccessor {
private final Map<Class<?>, Method[]> sortedMethodsCache = new ConcurrentHashMap<>(64); private final Map<Class<?>, Method[]> sortedMethodsCache = new ConcurrentHashMap<>(64);
@Nullable
private volatile InvokerPair lastReadInvokerPair;
/** /**
* Create a new property accessor for reading as well writing. * Create a new property accessor for reading as well writing.
* @see #ReflectivePropertyAccessor(boolean) * @see #ReflectivePropertyAccessor(boolean)
*/ */
public ReflectivePropertyAccessor() { public ReflectivePropertyAccessor() {
this.allowWrite = true; this(true);
} }
/** /**
@ -171,7 +168,6 @@ public class ReflectivePropertyAccessor implements PropertyAccessor {
PropertyCacheKey cacheKey = new PropertyCacheKey(type, name, target instanceof Class); PropertyCacheKey cacheKey = new PropertyCacheKey(type, name, target instanceof Class);
InvokerPair invoker = this.readerCache.get(cacheKey); InvokerPair invoker = this.readerCache.get(cacheKey);
this.lastReadInvokerPair = invoker;
if (invoker == null || invoker.member instanceof Method) { if (invoker == null || invoker.member instanceof Method) {
Method method = (Method) (invoker != null ? invoker.member : null); Method method = (Method) (invoker != null ? invoker.member : null);
@ -184,7 +180,6 @@ public class ReflectivePropertyAccessor implements PropertyAccessor {
TypeDescriptor typeDescriptor = new TypeDescriptor(property); TypeDescriptor typeDescriptor = new TypeDescriptor(property);
method = ClassUtils.getInterfaceMethodIfPossible(method, type); method = ClassUtils.getInterfaceMethodIfPossible(method, type);
invoker = new InvokerPair(method, typeDescriptor); invoker = new InvokerPair(method, typeDescriptor);
this.lastReadInvokerPair = invoker;
this.readerCache.put(cacheKey, invoker); this.readerCache.put(cacheKey, invoker);
} }
} }
@ -206,7 +201,6 @@ public class ReflectivePropertyAccessor implements PropertyAccessor {
field = findField(name, type, target); field = findField(name, type, target);
if (field != null) { if (field != null) {
invoker = new InvokerPair(field, new TypeDescriptor(field)); invoker = new InvokerPair(field, new TypeDescriptor(field));
this.lastReadInvokerPair = invoker;
this.readerCache.put(cacheKey, invoker); this.readerCache.put(cacheKey, invoker);
} }
} }