()
| 1858 | } |
| 1859 | |
| 1860 | fn java_home() -> Option<OsString> { |
| 1861 | env::var_os("JAVA_HOME") |
| 1862 | .or_else(|| cfg!(target_os = "macos").then(|| OsString::from("/opt/homebrew/opt/openjdk"))) |
| 1863 | } |
| 1864 | |
| 1865 | fn home_dir() -> PathBuf { |
| 1866 | env::var_os("HOME") |
no outgoing calls
no test coverage detected