File tree 1 file changed +1
-5
lines changed
cli/src/main/kotlin/com/bazel_diff/bazel
1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change 1
1
package com.bazel_diff.bazel
2
2
3
3
import com.bazel_diff.log.Logger
4
- import java.util.Calendar
5
4
import org.koin.core.component.KoinComponent
6
5
import org.koin.core.component.inject
6
+ import java.util.Calendar
7
7
8
8
class BazelClient (
9
9
private val useCquery : Boolean ,
@@ -35,10 +35,6 @@ class BazelClient(
35
35
// In addition, we must include all source dependencies in this query in order for them to
36
36
// show up in
37
37
// `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.
42
38
(queryService.query(" deps(//...:all-targets)" , useCquery = true ) +
43
39
queryService.query(repoTargetsQuery.joinToString(" + " ) { " '$it '" }))
44
40
.distinctBy { it.name }
You can’t perform that action at this time.
0 commit comments