From 3195e04be77859637d4b3b33ee69201e5288e15f Mon Sep 17 00:00:00 2001 From: Alex Scott Date: Tue, 21 Dec 2021 09:57:12 -0800 Subject: [PATCH] Update incompatible_display_source_file_location flag description The default value of this flag is true, not false. Closes #14332. PiperOrigin-RevId: 417640868 --- .../devtools/build/lib/query2/common/CommonQueryOptions.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/google/devtools/build/lib/query2/common/CommonQueryOptions.java b/src/main/java/com/google/devtools/build/lib/query2/common/CommonQueryOptions.java index 7ff9e2309a0c17..f68b83c9c302f8 100644 --- a/src/main/java/com/google/devtools/build/lib/query2/common/CommonQueryOptions.java +++ b/src/main/java/com/google/devtools/build/lib/query2/common/CommonQueryOptions.java @@ -167,7 +167,7 @@ public Set toSettings() { effectTags = {OptionEffectTag.TERMINAL_OUTPUT}, metadataTags = {OptionMetadataTag.INCOMPATIBLE_CHANGE}, help = - "False by default, displays the target of the source file. " + "True by default, displays the target of the source file. " + "If true, displays the location of line 1 of source files in location outputs. " + "This flag only exists for migration purposes.") public boolean displaySourceFileLocation;