fix java arg logic
This commit is contained in:
parent
29a2889f40
commit
1e525f429f
1 changed files with 2 additions and 2 deletions
|
@ -123,9 +123,9 @@ fn java_option(log: &str) -> Issue {
|
|||
|
||||
if let Some(captures) = vm_option.captures(log) {
|
||||
let title = if &captures[1] == "UseShenandoahGC" {
|
||||
"Wrong Java Arguments"
|
||||
} else {
|
||||
"Java 8 and below don't support ShenandoahGC"
|
||||
} else {
|
||||
"Wrong Java Arguments"
|
||||
};
|
||||
return Some((
|
||||
title.to_string(),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue