aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/skyframe/EvaluableGraph.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/google/devtools/build/skyframe/EvaluableGraph.java')
-rw-r--r--src/main/java/com/google/devtools/build/skyframe/EvaluableGraph.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/main/java/com/google/devtools/build/skyframe/EvaluableGraph.java b/src/main/java/com/google/devtools/build/skyframe/EvaluableGraph.java
index b3d8bd0ac2..a9c067d6fd 100644
--- a/src/main/java/com/google/devtools/build/skyframe/EvaluableGraph.java
+++ b/src/main/java/com/google/devtools/build/skyframe/EvaluableGraph.java
@@ -24,8 +24,9 @@ import java.util.Map;
@ThreadSafe
interface EvaluableGraph extends QueryableGraph, DeletableGraph {
/**
- * Like {@link QueryableGraph#getBatch}, except it creates a new node for each key not already
- * present in the graph. Thus, the returned map will have an entry for each key in {@code keys}.
+ * Like {@link QueryableGraph#getBatchWithFieldHints}, except it creates a new node for each key
+ * not already present in the graph. Thus, the returned map will have an entry for each key in
+ * {@code keys}.
*/
Map<SkyKey, NodeEntry> createIfAbsentBatch(Iterable<SkyKey> keys);
}