- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for oldTable (0.49 sec)
-
src/main/java/org/codelibs/core/collection/ArrayMap.java
/** * Ensures capacity when the size exceeds the threshold. */ protected void ensureCapacity() { if (size >= threshold) { final Entry<K, V>[] oldTable = listTable; final int newCapacity = oldTable.length * 2 + 1; @SuppressWarnings("unchecked") final Entry<K, V>[] newMapTable = new Entry[newCapacity]; @SuppressWarnings("unchecked")Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Nov 22 11:21:59 UTC 2025 - 20.1K bytes - Viewed (0)