Skip to content

Commit 5d82722

Browse files
authored
chore: Remove no longer accurate comment (#254)
1 parent 12195f1 commit 5d82722

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

cli/src/main/kotlin/com/bazel_diff/bazel/BazelClient.kt

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package com.bazel_diff.bazel
22

33
import com.bazel_diff.log.Logger
4-
import java.util.Calendar
54
import org.koin.core.component.KoinComponent
65
import org.koin.core.component.inject
6+
import java.util.Calendar
77

88
class BazelClient(
99
private val useCquery: Boolean,
@@ -35,10 +35,6 @@ class BazelClient(
3535
// In addition, we must include all source dependencies in this query in order for them to
3636
// show up in
3737
// `configuredRuleInput`. Hence, one must not filter them out with `kind(rule, deps(..))`.
38-
// However, these
39-
// source targets are omitted inside BazelQueryService with the custom starlark function
40-
// used to print
41-
// labels.
4238
(queryService.query("deps(//...:all-targets)", useCquery = true) +
4339
queryService.query(repoTargetsQuery.joinToString(" + ") { "'$it'" }))
4440
.distinctBy { it.name }

0 commit comments

Comments
 (0)