Skip to content

Commit

Permalink
fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
cameronvoell committed Jul 1, 2024
1 parent 440e1b9 commit cdc810b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/src/main/java/xmtpv3.kt
Original file line number Diff line number Diff line change
Expand Up @@ -7822,7 +7822,7 @@ public object FfiConverterMapStringBoolean :
// The parens on `(k, v)` here ensure we're calling the right method,
// which is important for compatibility with older android devices.
// Ref https://blog.danlew.net/2017/03/16/kotlin-puzzler-whose-line-is-it-anyways/
value.forEach { (k, v) ->
value.iterator().forEach { (k, v) ->
FfiConverterString.write(k, buf)
FfiConverterBoolean.write(v, buf)
}
Expand Down

0 comments on commit cdc810b

Please sign in to comment.