Skip to content

Commit

Permalink
chore: Remove no longer accurate comment (#254)
Browse files Browse the repository at this point in the history
  • Loading branch information
honnix authored Nov 4, 2024
1 parent 12195f1 commit 5d82722
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions cli/src/main/kotlin/com/bazel_diff/bazel/BazelClient.kt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package com.bazel_diff.bazel

import com.bazel_diff.log.Logger
import java.util.Calendar
import org.koin.core.component.KoinComponent
import org.koin.core.component.inject
import java.util.Calendar

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

0 comments on commit 5d82722

Please sign in to comment.