Skip to content

Commit e2c6169

Browse files
authored
Build: help the compiler find the correct symbol (#6665)
1 parent 5ebf331 commit e2c6169

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libraries/apollo-gradle-plugin/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ abstract class CleanStaleTestProjects : DefaultTask() {
6161

6262
@TaskAction
6363
fun taskAction() {
64-
directory.listFiles { it.isDirectory && it.name.startsWith("testProject") }!!.forEach {
64+
directory.listFiles { it: File -> it.isDirectory && it.name.startsWith("testProject") }!!.forEach {
6565
it.deleteRecursively()
6666
}
6767
}

0 commit comments

Comments
 (0)