Skip to content

Commit

Permalink
'sepinf-inc#2294: Fix a typo in method's name.
Browse files Browse the repository at this point in the history
  • Loading branch information
wladimirleite committed Oct 8, 2024
1 parent 3c560f1 commit 8a9e036
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -770,7 +770,7 @@ private void parseWhatsAppAccount(InputStream is, ParseContext context, ContentH
WAAccount account = null;
if (isAndroid) {
account = WAAccount.getFromAndroidXml(is);
fillAccountWihContactData(account, context, handler);
fillAccountWithContactData(account, context, handler);
fillAccountAvatar(account, context, handler);
} else {
account = WAAccount.getFromIOSPlist(is);
Expand Down Expand Up @@ -807,7 +807,7 @@ private void parseWhatsAppAccount(InputStream is, ParseContext context, ContentH
}
}

private void fillAccountWihContactData(WAAccount account, ParseContext context, ContentHandler handler) {
private void fillAccountWithContactData(WAAccount account, ParseContext context, ContentHandler handler) {
if (account == null || account.getWaName() != null) {
return;
}
Expand Down

0 comments on commit 8a9e036

Please sign in to comment.