Skip to content

Commit

Permalink
Remove Windows-Specific Advice
Browse files Browse the repository at this point in the history
Server Java is rarely an issue on Windows,
so telling people to download it from Oracle's site is bad -
the package manager is much preferred.
  • Loading branch information
Scotsguy committed Sep 28, 2019
1 parent afa27f3 commit 3d15d5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parsers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ fn multimc_in_program_files(log: &str) -> Option<(&str, String)> {
fn server_java(log: &str) -> Option<(&str, String)> {
const TRIGGER: &str = "-Bit Server VM warning";
if log.contains(TRIGGER) {
Some(("‼", "You're using the server version of Java. You should install the desktop version from [this link](https://java.com/en/download/manual.jsp).".to_string()))
Some(("‼", "You're using the server version of Java. You should install the desktop version via your distribution's package manager.".to_string()))
} else {
None
}
Expand Down

0 comments on commit 3d15d5d

Please sign in to comment.