Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
nplasterer committed Dec 21, 2024
1 parent 866e971 commit cd70753
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 @@ -12407,7 +12407,7 @@ public object FfiConverterMapByteArraySequenceTypeFfiHmacKey :
// 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) ->
FfiConverterByteArray.write(k, buf)
FfiConverterSequenceTypeFfiHmacKey.write(v, buf)
}
Expand Down

0 comments on commit cd70753

Please sign in to comment.