mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-09-15 07:34:54 -04:00
NOISSUE in java checker, ignore invalid lines altogether
Declaring them as errors is just causing problems because Java randomly prints garbage to STDOUT now.
This commit is contained in:
1 parent
70c04745ee
commit
ddfed7bb87
1 file changed
+1
-1
@@ -111,7 +111,7 @@ void JavaChecker::finished(int exitcode, QProcess::ExitStatus status)
|
||||
auto parts = line.split('=', QString::SkipEmptyParts);
|
||||
if(parts.size() != 2 || parts[0].isEmpty() || parts[1].isEmpty())
|
||||
{
|
||||
success = false;
|
||||
continue;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Reference in new issue
Block a user