Automatic code cleanup.
PiperOrigin-RevId: 767982356
Change-Id: I373465437810ae7c8e7722af481fe9e738ce284d
diff --git a/src/main/java/com/google/devtools/build/lib/analysis/Util.java b/src/main/java/com/google/devtools/build/lib/analysis/Util.java
index 110c76a..089cddb 100644
--- a/src/main/java/com/google/devtools/build/lib/analysis/Util.java
+++ b/src/main/java/com/google/devtools/build/lib/analysis/Util.java
@@ -71,13 +71,13 @@
// ---------- Implicit dependency extractor
- /*
+ /**
* Given a RuleContext, find all the implicit attribute deps aka deps that weren't explicitly set
* in the build file but are attached behind the scenes to some attribute. This means this
- * function does *not* cover deps attached other ways e.g. toolchain-related implicit deps
- * (see {@link PostAnalysisQueryEnvironment#targetifyValues} for more info on further implicit
- * deps filtering).
- * note: nodes that are depended on both implicitly and explicitly are considered explicit.
+ * function does *not* cover deps attached other ways e.g. toolchain-related implicit deps (see
+ * {@link PostAnalysisQueryEnvironment#targetifyValues} for more info on further implicit deps
+ * filtering). note: nodes that are depended on both implicitly and explicitly are considered
+ * explicit.
*/
public static ImmutableSet<ConfiguredTargetKey> findImplicitDeps(RuleContext ruleContext) {
Set<ConfiguredTargetKey> maybeImplicitDeps = CompactHashSet.create();