Fixed issue with isOracleVM logic

This commit is contained in:
nathan 2018-01-08 20:53:55 +01:00
parent a3b7d72ac9
commit 806c2c71b4

View File

@ -106,7 +106,7 @@ class SystemTrayFixes {
.toLowerCase(Locale.US);
// spaces at the end to make sure we check for words
return !(vendor.contains("sun ") || vendor.contains("oracle "));
return vendor.contains("sun ") || vendor.contains("oracle ");
}