mirror of
https://github.com/TheAlgorithms/Java.git
synced 2026-03-13 08:40:43 +08:00
chore: suppress unchecked in selected classes (#6262)
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user