Make lint happy

This commit is contained in:
ligi 2019-10-23 12:14:18 +09:00
parent 902eea17a5
commit 2d28a30ea4
No known key found for this signature in database
GPG Key ID: 8E81894010ABF23D

View File

@ -5,7 +5,7 @@ import java.io.File
fun main() {
File("_data/chains").listFiles().forEach {
File("_data/chains").listFiles()?.forEach {
checkChain(it, false)
}