Skip to content

Commit df5648c

Browse files
committed
[MNT-25404] Query Performance - High performance cost in retrieving nodes/node properties for large result sets
- Clean up paramenter
1 parent 8ad373f commit df5648c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

repository/src/main/java/org/alfresco/repo/cache/lookup/EntityLookupCache.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -542,9 +542,9 @@ public Pair<K, V> getByValue(V value)
542542
* <p/>
543543
* It is up to the client code to decide if a <tt>null</tt> return value indicates a concurrency violation or not; the former would normally result in a concurrency-related exception such as {@link ConcurrencyFailureException}.
544544
*
545-
* @param value
546-
* The entity value, which may be valid or invalid (<tt>null</tt> is allowed)
547-
* @return Returns the key-value pair or <tt>null</tt> if the value doesn't reference an entity
545+
* @param values
546+
* The entity values, which may be valid or invalid (<tt>null</tt> is allowed)
547+
* @return Returns a list of key-value pairs
548548
*/
549549
@SuppressWarnings("unchecked")
550550
public List<Pair<K, V>> getByValues(List<V> values)

0 commit comments

Comments
 (0)