Skip to content

Commit

Permalink
Resolve one name shadowing lint complain
Browse files Browse the repository at this point in the history
  • Loading branch information
ebraminio committed Jan 30, 2024
1 parent 935475e commit fc8a561
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -278,8 +278,8 @@ private fun ShareActionButton(viewModel: ConverterViewModel, qrShareAction: () -
listOf(
viewModel.firstTimeZone.value,
viewModel.secondTimeZone.value,
).joinToString("\n") {
it.displayName + ": " + Clock(GregorianCalendar(it).also {
).joinToString("\n") { timeZone ->
timeZone.displayName + ": " + Clock(GregorianCalendar(timeZone).also {
it.time = viewModel.clock.value.time
}).toBasicFormatString()
},
Expand Down

0 comments on commit fc8a561

Please sign in to comment.