Skip to content

Commit

Permalink
Spotless.
Browse files Browse the repository at this point in the history
  • Loading branch information
colinrtwhite committed Jul 26, 2023
1 parent 6e151f4 commit 31f2213
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion coil-test-internal/src/main/java/coil/util/Bitmaps.kt
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ fun Bitmap.computeSimilarity(

// Fall back to ensuring that each value in the array is at most one off from each other.
for (i in channel1.indices) {
if (channel1[i] !in channel2[i] - 1 .. channel2[i] + 1) {
if (channel1[i] !in channel2[i] - 1..channel2[i] + 1) {
return@async 0.0
}
}
Expand Down

0 comments on commit 31f2213

Please sign in to comment.