aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/runtime/commands/DumpCommand.java
diff options
context:
space:
mode:
authorGravatar tomlu <tomlu@google.com>2018-03-12 10:18:49 -0700
committerGravatar Copybara-Service <copybara-piper@google.com>2018-03-12 10:20:53 -0700
commit544897148c47773101f1f0ee9558c8e27fa087c8 (patch)
tree1c33715d56f30d5d7a44b5fef1a964348f792ceb /src/main/java/com/google/devtools/build/lib/runtime/commands/DumpCommand.java
parent9a3c3c2d1126366214812a12e382c4953742dccf (diff)
Remove support for blaze dump --vfs.
It is no longer meaningful since the vfs doesn't have an internal path tree to dump. RELNOTES: Remove support for blaze dump --vfs. It is no longer meaningful. PiperOrigin-RevId: 188739379
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/runtime/commands/DumpCommand.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/runtime/commands/DumpCommand.java18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/runtime/commands/DumpCommand.java b/src/main/java/com/google/devtools/build/lib/runtime/commands/DumpCommand.java
index a9fba24573..82df3fb811 100644
--- a/src/main/java/com/google/devtools/build/lib/runtime/commands/DumpCommand.java
+++ b/src/main/java/com/google/devtools/build/lib/runtime/commands/DumpCommand.java
@@ -86,16 +86,6 @@ public class DumpCommand implements BlazeCommand {
public boolean dumpPackages;
@Option(
- name = "vfs",
- defaultValue = "false",
- category = "verbosity",
- documentationCategory = OptionDocumentationCategory.OUTPUT_SELECTION,
- effectTags = {OptionEffectTag.BAZEL_MONITORING},
- help = "Dump virtual filesystem cache content."
- )
- public boolean dumpVfs;
-
- @Option(
name = "action_cache",
defaultValue = "false",
category = "verbosity",
@@ -212,7 +202,6 @@ public class DumpCommand implements BlazeCommand {
boolean anyOutput =
dumpOptions.dumpPackages
- || dumpOptions.dumpVfs
|| dumpOptions.dumpActionCache
|| dumpOptions.dumpActionGraph != null
|| dumpOptions.dumpRuleClasses
@@ -245,13 +234,6 @@ public class DumpCommand implements BlazeCommand {
out.println();
}
- if (dumpOptions.dumpVfs) {
- // TODO(b/72498697): Remove this flag
- out.println("Filesystem cache");
- out.println("dump --vfs is no longer meaningful");
- out.println();
- }
-
if (dumpOptions.dumpActionCache) {
success &= dumpActionCache(env, out);
out.println();