risdenk commented on code in PR #1482:
URL: https://github.com/apache/solr/pull/1482#discussion_r1146250980


##########
solr/solrj/src/java/org/apache/solr/common/util/CollectionUtil.java:
##########
@@ -39,6 +41,17 @@ public static <K, V> HashMap<K, V> newHashMap(int size) {
     return new HashMap<>((int) (size / 0.75f) + 1);
   }
 
+  /**
+   * Returns a new {@link LinkedHashMap} sized to contain {@code size} items 
without resizing the
+   * internal array.
+   */
+  public static <K, V> LinkedHashMap<K, V> newLinkedHashMap(int size) {
+    // With Lucene 9.5 - we should replace this with

Review Comment:
   Fixed in 33f0c54372f5933c59023d71b33ac903dadd438e



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@solr.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@solr.apache.org
For additional commands, e-mail: issues-h...@solr.apache.org

Reply via email to