Skip to content

Commit

Permalink
Aperture: Remove unused expression
Browse files Browse the repository at this point in the history
It was supposed to be a `it ->` but without the `->`
it's simply an expression and not the lambda parameter...

Change-Id: I83216325f3490e0163a3b8849616e8075c8b7f83
  • Loading branch information
luca020400 authored and luk1337 committed Jan 2, 2025
1 parent 2e066d2 commit e34ee13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/main/java/org/lineageos/aperture/ext/Bitmap.kt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* SPDX-FileCopyrightText: 2022-2024 The LineageOS Project
* SPDX-FileCopyrightText: 2022-2025 The LineageOS Project
* SPDX-License-Identifier: Apache-2.0
*/

Expand Down Expand Up @@ -45,7 +45,7 @@ internal fun Bitmap.stackBlur(radius: Int): Bitmap {
return this
}

val bitmap = config?.let { it
val bitmap = config?.let {
copy(it, true)
} ?: return this

Expand Down

0 comments on commit e34ee13

Please sign in to comment.