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:
@@ -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 {
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user