mirror of
https://github.com/pezkuwichain/pezkuwi-wallet-android.git
synced 2026-04-22 13:47:58 +00:00
fix: resolve ktlint errors in bridge feature module
This commit is contained in:
+6
-5
@@ -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)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user