Commit 7c5c01bb authored by Him188's avatar Him188

Remove unnecessary let

parent 7bf8d3fb
......@@ -149,10 +149,8 @@ fun DataOutputStream.writeCRC32() = writeCRC32(getRandomByteArray(16))
fun DataOutputStream.writeCRC32(key: ByteArray) {
key.let {
write(it)//key
writeInt(getCrc32(it))
}
write(key)//key
writeInt(getCrc32(key))
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment