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

@@ -15,7 +15,7 @@ import com.thealgorithms.devutils.searches.SearchAlgorithm;
* Note: This algorithm requires that the input array be sorted.
* </p>
*/
@SuppressWarnings("rawtypes")
@SuppressWarnings({"rawtypes", "unchecked"})
public class FibonacciSearch implements SearchAlgorithm {
/**