Just fixing some typo

This commit is contained in:
Igor
2025-01-08 14:05:26 -05:00
committed by Josh Tynjala
parent 951d5510c2
commit 6a5908b02b

View File

@@ -26,9 +26,9 @@ class Keystore
if (keystore != null)
{
if (keystore.path != null && keystore.path != "") path = keystore.path;
if (keystore.password != null) path = keystore.password;
if (keystore.alias != null) path = keystore.alias;
if (keystore.aliasPassword != null) path = keystore.aliasPassword;
if (keystore.password != null) password = keystore.password;
if (keystore.alias != null) alias = keystore.alias;
if (keystore.aliasPassword != null) aliasPassword = keystore.aliasPassword;
}
}
}