Skip to content

Commit

Permalink
more fixes for linter
Browse files Browse the repository at this point in the history
  • Loading branch information
nplasterer committed Oct 26, 2023
1 parent b46212e commit 852ec66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/src/main/java/xmtp_dh.kt
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,7 @@ public object FfiConverterSequenceUByte : FfiConverterRustBuffer<List<UByte>> {

override fun write(value: List<UByte>, buf: ByteBuffer) {
buf.putInt(value.size)
value.forEach {
value.iterator().forEach {
FfiConverterUByte.write(it, buf)
}
}
Expand Down

0 comments on commit 852ec66

Please sign in to comment.