Skip to content

Commit 2acbdd0

Browse files
committed
Updated comment of CheckSum.kt
1 parent d3ac140 commit 2acbdd0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/kotlin/biokotlin/util/CheckSum.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import java.security.MessageDigest
88
* Allows user to specify the protocol, e.g. MD5, SHA-1, SHA-256
99
*
1010
* @param filename filename to checksum
11-
* @param protocol protocol
11+
* @param protocol protocol (default "MD5")
1212
*
1313
* @return check sum
1414
*/
@@ -37,4 +37,4 @@ private fun convertBytesToHex(bytes: ByteArray): String {
3737
builder.append(String.format("%02x", bytes[i].toInt() and 0xff))
3838
}
3939
return builder.toString()
40-
}
40+
}

0 commit comments

Comments
 (0)