From df5648c86bb5317aaa23d9a2c39ffe866692e7d9 Mon Sep 17 00:00:00 2001 From: Jared Ottley Date: Sun, 2 Nov 2025 22:41:14 -0700 Subject: [PATCH] [MNT-25404] Query Performance - High performance cost in retrieving nodes/node properties for large result sets - Clean up paramenter --- .../org/alfresco/repo/cache/lookup/EntityLookupCache.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/repository/src/main/java/org/alfresco/repo/cache/lookup/EntityLookupCache.java b/repository/src/main/java/org/alfresco/repo/cache/lookup/EntityLookupCache.java index 3e13026967..2feabff36c 100644 --- a/repository/src/main/java/org/alfresco/repo/cache/lookup/EntityLookupCache.java +++ b/repository/src/main/java/org/alfresco/repo/cache/lookup/EntityLookupCache.java @@ -542,9 +542,9 @@ public class EntityLookupCache * It is up to the client code to decide if a null return value indicates a concurrency violation or not; the former would normally result in a concurrency-related exception such as {@link ConcurrencyFailureException}. * - * @param value - * The entity value, which may be valid or invalid (null is allowed) - * @return Returns the key-value pair or null if the value doesn't reference an entity + * @param values + * The entity values, which may be valid or invalid (null is allowed) + * @return Returns a list of key-value pairs */ @SuppressWarnings("unchecked") public List> getByValues(List values)