| 11 | |
| 12 | #[derive(Debug)] |
| 13 | pub struct JavaInstallation { |
| 14 | pub version: String, |
| 15 | pub path: PathBuf, |
| 16 | } |
| 17 | |
| 18 | impl JavaInstallation { |
| 19 | fn extract_java_version(java_path: &Path) -> Result<Option<String>, BackendError> { |
nothing calls this directly
no outgoing calls
no test coverage detected