aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/skyframe/AspectValue.java
diff options
context:
space:
mode:
authorGravatar gregce <gregce@google.com>2017-09-12 23:58:34 +0200
committerGravatar Philipp Wollermann <philwo@google.com>2017-09-13 19:06:29 +0200
commite0bbe757b3626fbbadbab798e6752ca086e9ff46 (patch)
tree7d58994baa09bdce6be8df4276e15d31aac9d057 /src/main/java/com/google/devtools/build/lib/skyframe/AspectValue.java
parent93d65a4473c9c963a190b433f359ef7e52273bd4 (diff)
Remove outdated references to static vs. dynamic configurations.
PiperOrigin-RevId: 168452997
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/skyframe/AspectValue.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/skyframe/AspectValue.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/skyframe/AspectValue.java b/src/main/java/com/google/devtools/build/lib/skyframe/AspectValue.java
index 0656d45dfb..ee23308d07 100644
--- a/src/main/java/com/google/devtools/build/lib/skyframe/AspectValue.java
+++ b/src/main/java/com/google/devtools/build/lib/skyframe/AspectValue.java
@@ -112,7 +112,7 @@ public final class AspectValue extends ActionLookupValue {
/**
* Returns the configuration to be used for the evaluation of the aspect itself.
*
- * <p>In dynamic configuration mode, the aspect may require more fragments than the target on
+ * <p>In trimmed configuration mode, the aspect may require more fragments than the target on
* which it is being evaluated; in addition to configuration fragments required by the target
* and its dependencies, an aspect has configuration fragment requirements of its own, as well
* as dependencies of its own with their own configuration fragment requirements.
@@ -122,7 +122,7 @@ public final class AspectValue extends ActionLookupValue {
* configurations trimmed from this one as normal.
*
* <p>Because of these properties, this configuration is always a superset of that returned by
- * {@link #getBaseConfiguration()}. In static configuration mode, this configuration will be
+ * {@link #getBaseConfiguration()}. In untrimmed configuration mode, this configuration will be
* equivalent to that returned by {@link #getBaseConfiguration()}.
*
* @see #getBaseConfiguration()
@@ -134,7 +134,7 @@ public final class AspectValue extends ActionLookupValue {
/**
* Returns the configuration to be used for the base target.
*
- * <p>In dynamic configuration mode, the configured target this aspect is attached to may have
+ * <p>In trimmed configuration mode, the configured target this aspect is attached to may have
* a different configuration than the aspect itself (see the documentation for
* {@link #getAspectConfiguration()} for an explanation why). The base configuration is the one
* used to construct a key to look up the base configured target.