Remove an unused "context" from a private function

This commit is contained in:
Jesse Vincent 2010-12-01 06:04:16 +00:00
parent 02acea3bbf
commit 75ec749ed4
1 changed files with 3 additions and 6 deletions

View File

@ -4322,7 +4322,7 @@ public class MessagingController implements Runnable
continue; continue;
} }
synchronizeFolder(context, account, folder, ignoreLastCheckedTime, accountInterval, listener); synchronizeFolder(account, folder, ignoreLastCheckedTime, accountInterval, listener);
} }
} }
catch (MessagingException e) catch (MessagingException e)
@ -4361,14 +4361,11 @@ public class MessagingController implements Runnable
private void synchronizeFolder( private void synchronizeFolder(
final Context context, final Account account, final Account account,
final Folder folder, final Folder folder,
final boolean ignoreLastCheckedTime, final boolean ignoreLastCheckedTime,
final long accountInterval, final long accountInterval,
final MessagingListener listener final MessagingListener listener )
)
{ {