(int size, int tableSize, double loadFactor)
| 67 | } |
| 68 | |
| 69 | static boolean needsResizing(int size, int tableSize, double loadFactor) { |
| 70 | return size > loadFactor * tableSize && tableSize < MAX_TABLE_SIZE; |
| 71 | } |
| 72 | } |
no outgoing calls
no test coverage detected