aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/skyframe/PrecomputedValue.java
diff options
context:
space:
mode:
authorGravatar Ulf Adams <ulfjack@google.com>2015-09-04 12:10:53 +0000
committerGravatar Dmitry Lomov <dslomov@google.com>2015-09-04 12:53:08 +0000
commit3ab82f767981c5bb32e041a3d08b8dc9f41625e2 (patch)
tree6c31f94248a8bd7dffca0564e08670f11a2e177a /src/main/java/com/google/devtools/build/lib/skyframe/PrecomputedValue.java
parentb7a69e551e4da9f8a4f7a4649c7843044d122732 (diff)
Fix some warnings.
-- MOS_MIGRATED_REVID=102332437
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/skyframe/PrecomputedValue.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/skyframe/PrecomputedValue.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/skyframe/PrecomputedValue.java b/src/main/java/com/google/devtools/build/lib/skyframe/PrecomputedValue.java
index e94cfdbc23..93fe63d40e 100644
--- a/src/main/java/com/google/devtools/build/lib/skyframe/PrecomputedValue.java
+++ b/src/main/java/com/google/devtools/build/lib/skyframe/PrecomputedValue.java
@@ -43,12 +43,12 @@ import javax.annotation.Nullable;
* "precomputed" from skyframe's perspective and so the graph needs to be prepopulated with them
* (e.g. via injection).
*/
-public class PrecomputedValue implements SkyValue {
+public final class PrecomputedValue implements SkyValue {
/**
* An externally-injected precomputed value. Exists so that modules can inject precomputed values
* into Skyframe's graph.
*
- * <p>{@see com.google.devtools.build.lib.blaze.BlazeModule#getPrecomputedValues}.
+ * @see com.google.devtools.build.lib.runtime.BlazeModule#getPrecomputedSkyframeValues
*/
public static final class Injected {
private final Precomputed<?> precomputed;