satisfy ktlint demand for spacing around "*"

Signed-off-by: Graeme Power <gjpower@tcd.ie>
This commit is contained in:
Graeme Power 2020-10-31 17:43:16 +01:00
parent 856ae33fd5
commit bd36c67bf2
No known key found for this signature in database
GPG Key ID: 9368D9D3759C5C49
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ fun String.toBitMatrix(size: Int): BitMatrix {
fun BitMatrix.toBitmap(@ColorInt backgroundColor: Int = Color.WHITE,
@ColorInt foregroundColor: Int = Color.BLACK): Bitmap {
val colorBuffer = IntArray(width*height)
val colorBuffer = IntArray(width * height)
var rowOffset = 0
for (y in 0 until height) {
for (x in 0 until width) {