Skip to content

Commit e7489ed

Browse files
committed
Apply PR suggestion: fix camelCase in siteIdBloggingReminderMap
1 parent a86b42c commit e7489ed

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

WordPress/src/main/java/org/wordpress/android/bloggingreminders/resolver/BloggingRemindersResolver.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,10 @@ class BloggingRemindersResolver @Inject constructor(
7474
}
7575

7676
@Suppress("TooGenericExceptionCaught", "SwallowedException")
77-
private fun syncBloggingReminders(siteIDBloggingReminderMap: SiteIDBloggingReminderMap): Boolean {
77+
private fun syncBloggingReminders(siteIdBloggingReminderMap: SiteIDBloggingReminderMap): Boolean {
7878
try {
7979
coroutineScope.launch {
80-
for ((siteId, bloggingReminder) in siteIDBloggingReminderMap) {
80+
for ((siteId, bloggingReminder) in siteIdBloggingReminderMap) {
8181
if (siteId == null || bloggingReminder == null) {
8282
continue
8383
}

0 commit comments

Comments
 (0)