Skip to content

Commit

Permalink
refactor: map 함수 들여쓰기 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
nueijeel committed Mar 17, 2024
1 parent 820ca3f commit a9f1780
Showing 1 changed file with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@ class DogPreferences
throw exception
}
}
.map { preferences ->
preferences[preferenceDogId]
}
.map { preferences ->
preferences[preferenceDogId]
}

val dogName: Flow<String?> =
context.dogDataStore.data.catch { exception ->
Expand All @@ -82,9 +82,9 @@ class DogPreferences
throw exception
}
}
.map { preferences ->
preferences[preferenceDogName]
}
.map { preferences ->
preferences[preferenceDogName]
}

val dogWeight: Flow<Double?> =
context.dogDataStore.data.catch { exception ->
Expand All @@ -94,7 +94,7 @@ class DogPreferences
throw exception
}
}
.map { preferences ->
preferences[preferenceDogWeight]
}
.map { preferences ->
preferences[preferenceDogWeight]
}
}

0 comments on commit a9f1780

Please sign in to comment.