chore: suppress unchecked in selected classes (#6262)

This commit is contained in:
Piotr Idzik
2025-06-05 18:13:46 +02:00
committed by GitHub
parent ec6f09c373
commit 7602f1ef4c
15 changed files with 14 additions and 12 deletions

View File

@@ -23,7 +23,7 @@ import java.util.LinkedList;
* @param <K> the type of keys maintained by this hash map
* @param <V> the type of mapped values
*/
@SuppressWarnings("rawtypes")
@SuppressWarnings({"rawtypes", "unchecked"})
public class GenericHashMapUsingArray<K, V> {
private int size; // Total number of key-value pairs