Skip to content

Commit e1f14c6

Browse files
RBusarowkodiakhq[bot]
authored andcommitted
fix overshot filtering
1 parent d46a46c commit e1f14c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modulecheck-core/src/main/kotlin/modulecheck/core/context/OverShotDependencies.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ data class OverShotDependencies(
7676
}
7777

7878
top.flatMap { all.getValue(it.name) }
79-
.filter { project.projectDependencies.value[it.configurationName].isNullOrEmpty() }
79+
.filter { project.projectDependencies.value[it.configurationName]?.contains(it) != true }
8080
.toSet()
8181
}
8282
}

0 commit comments

Comments
 (0)