remove extra ;

Signed-off-by: Rahul Imran <notlutitious@gmail.com>
This commit is contained in:
Rahul Imran 2024-10-16 22:36:51 +01:00 committed by GitHub
parent fbd41fcf35
commit a86ccabe04
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -370,7 +370,7 @@ fn java_32_bit(log: &str) -> Issue {
); );
let found = log.contains("Could not reserve enough space for ") let found = log.contains("Could not reserve enough space for ")
|| log.contains("Invalid maximum heap size: "); || log.contains("Invalid maximum heap size: ")
|| log.contains("Invalid initial heap size: "); || log.contains("Invalid initial heap size: ");
found.then_some(issue) found.then_some(issue)
} }