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

@@ -8,7 +8,7 @@ import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.Arguments;
import org.junit.jupiter.params.provider.MethodSource;
@SuppressWarnings("rawtypes")
@SuppressWarnings({"rawtypes", "unchecked"})
public class NumberOfDigitsTest {
@ParameterizedTest