aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Lukacs Berki <lberki@google.com>2016-09-21 14:42:07 +0000
committerGravatar Laszlo Csomor <laszlocsomor@google.com>2016-09-22 09:51:29 +0000
commit3aa7d63cc450bd669401cc4d9b41a0fdaa3a58c8 (patch)
tree0524c0891dbacabcd09e32540b02acd3a80227ef
parentae7be6f016933ca91c2dab3d6c4af785622b2988 (diff)
Remove the --show_cached_analysis_results command line option, which was a no-op.
-- MOS_MIGRATED_REVID=133830375
-rw-r--r--src/main/java/com/google/devtools/build/lib/analysis/config/BuildConfiguration.java17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/analysis/config/BuildConfiguration.java b/src/main/java/com/google/devtools/build/lib/analysis/config/BuildConfiguration.java
index 8f01d0d0fe..90906b89db 100644
--- a/src/main/java/com/google/devtools/build/lib/analysis/config/BuildConfiguration.java
+++ b/src/main/java/com/google/devtools/build/lib/analysis/config/BuildConfiguration.java
@@ -542,15 +542,6 @@ public final class BuildConfiguration {
+ "Otherwise, test rules are always excluded from coverage instrumentation.")
public boolean instrumentTestTargets;
- @Option(name = "show_cached_analysis_results",
- defaultValue = "true",
- category = "undocumented",
- help = "Bazel reruns a static analysis only if it detects changes in the analysis "
- + "or its dependencies. If this option is enabled, Bazel will show the analysis' "
- + "results, even if it did not rerun the analysis. If this option is disabled, "
- + "Bazel will show analysis results only if it reran the analysis.")
- public boolean showCachedAnalysisResults;
-
@Option(name = "host_cpu",
defaultValue = "",
category = "semantics",
@@ -2090,14 +2081,6 @@ public final class BuildConfiguration {
}
/**
- * Returns true if bazel should show analyses results, even if it did not
- * re-run the analysis.
- */
- public boolean showCachedAnalysisResults() {
- return options.showCachedAnalysisResults;
- }
-
- /**
* Returns a new, unordered mapping of names to values of "Make" variables defined by this
* configuration.
*