pub fn detect_java_in_paths<'a>(
paths: &[&Path],
max_depth: usize,
) -> Vec<JavaRuntime>
Expand description
Detects available Java runtimes within multiple paths up to a maximum depth.
§Parameters
paths
: The paths to search for Java runtimes.max_depth
: Maximum depth to search for Java runtimes (seeWalkDir::max_depth
).
§Returns
A vector containing all detected Java runtimes.