Renamed "identitiy" to "identity".

The naturalize tool detected that using "identity" is more consistent
with the current codebase state:
* "identity" in SettingsImporter is 78.46% probable ("identitiy" 21.54%)
This commit is contained in:
Miltos Allamanis 2014-02-26 14:48:11 +00:00
parent cfeed40781
commit c17d0323f2
1 changed files with 2 additions and 2 deletions

View File

@ -608,8 +608,8 @@ public class SettingsImporter {
}
private static boolean isIdentityDescriptionUsed(String description, List<Identity> identities) {
for (Identity identitiy : identities) {
if (identitiy.getDescription().equals(description)) {
for (Identity identity : identities) {
if (identity.getDescription().equals(description)) {
return true;
}
}