Trivial indentation fixes (#226)

This commit is contained in:
Michael Biebl 2022-12-15 23:49:36 +01:00 committed by Ricki Hirner
parent 2730d14cb9
commit 0521f4bcf0
No known key found for this signature in database
GPG key ID: 79A019FCAAEDD3AA
3 changed files with 3 additions and 3 deletions

View file

@ -29,7 +29,7 @@ class CalendarsSyncAdapterService: SyncAdapterService() {
override fun syncAdapter() = CalendarsSyncAdapter(this)
class CalendarsSyncAdapter(context: Context) : SyncAdapter(context) {
class CalendarsSyncAdapter(context: Context) : SyncAdapter(context) {
override fun sync(account: Account, extras: Bundle, authority: String, httpClient: Lazy<HttpClient>, provider: ContentProviderClient, syncResult: SyncResult) {
try {

View file

@ -26,7 +26,7 @@ class ContactsSyncAdapterService: SyncAdapterService() {
override fun syncAdapter() = ContactsSyncAdapter(this)
class ContactsSyncAdapter(context: Context) : SyncAdapter(context) {
class ContactsSyncAdapter(context: Context) : SyncAdapter(context) {
override fun sync(account: Account, extras: Bundle, authority: String, httpClient: Lazy<HttpClient>, provider: ContentProviderClient, syncResult: SyncResult) {
try {

View file

@ -32,7 +32,7 @@ open class TasksSyncAdapterService: SyncAdapterService() {
override fun syncAdapter() = TasksSyncAdapter(this)
class TasksSyncAdapter(context: Context) : SyncAdapter(context) {
class TasksSyncAdapter(context: Context) : SyncAdapter(context) {
override fun sync(account: Account, extras: Bundle, authority: String, httpClient: Lazy<HttpClient>, provider: ContentProviderClient, syncResult: SyncResult) {
try {