0
0
mirror of https://github.com/etesync/android.git synced 2024-09-20 13:08:51 +02: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
}