1
0
mirror of https://github.com/etesync/android synced 2024-11-22 07:58:09 +00:00

Contacts sync manager: remove unnecessary not-null assertion.

This commit is contained in:
Tom Hacohen 2019-04-04 13:35:03 +01:00
parent eef861614e
commit f41c7cd4c9

View File

@ -76,7 +76,7 @@ constructor(context: Context, account: Account, settings: AccountSettings, extra
}
}
journal = JournalEntryManager(httpClient.okHttpClient, remote, localAddressBook.url!!)
journal = JournalEntryManager(httpClient.okHttpClient, remote, localAddressBook.url)
return true
}