fix: resolve ktlint errors in bridge feature module

This commit is contained in:
2026-01-23 15:15:43 +03:00
parent 71ca24cbdb
commit f8311dfe4b
2 changed files with 8 additions and 7 deletions
@@ -89,11 +89,12 @@ class BridgeDepositFragment : Fragment() {
for (x in 0 until width) {
for (y in 0 until height) {
bitmap.setPixel(
x, y,
if (bitMatrix.get(x, y)) android.graphics.Color.BLACK
else android.graphics.Color.WHITE
)
val color = if (bitMatrix.get(x, y)) {
android.graphics.Color.BLACK
} else {
android.graphics.Color.WHITE
}
bitmap.setPixel(x, y, color)
}
}