Skip to content

Commit

Permalink
Just fixing some typo
Browse files Browse the repository at this point in the history
  • Loading branch information
pozirk authored and joshtynjala committed Jan 8, 2025
1 parent 951d551 commit 6a5908b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lime/tools/Keystore.hx
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
}

0 comments on commit 6a5908b

Please sign in to comment.