Skip to content

Commit

Permalink
Move announce option to graveyard.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 545416891
Change-Id: I8f9a7be2d2db418dfdf0a35c1fd2d63cb755539b
  • Loading branch information
meisterT authored and copybara-github committed Jul 4, 2023
1 parent b512ead commit 67b71cd
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -403,6 +403,15 @@ public static class BuildGraveyardOptions extends OptionsBase {
effectTags = {OptionEffectTag.AFFECTS_OUTPUTS},
help = "Deprecated no-op.")
public boolean showArtifacts;

@Option(
name = "announce",
defaultValue = "false",
documentationCategory = OptionDocumentationCategory.UNDOCUMENTED,
effectTags = {OptionEffectTag.AFFECTS_OUTPUTS},
help = "Deprecated. No-op.",
deprecationWarning = "This option is now deprecated and is a no-op")
public boolean announce;
}

/** This is where deprecated Bazel-specific options only used by the build command go to die. */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -203,15 +203,6 @@ public class BuildRequestOptions extends OptionsBase {
+ " under the threshold.")
public int maxResultTargets;

@Option(
name = "announce",
defaultValue = "false",
documentationCategory = OptionDocumentationCategory.LOGGING,
effectTags = {OptionEffectTag.AFFECTS_OUTPUTS},
help = "Deprecated. No-op.",
deprecationWarning = "This option is now deprecated and is a no-op")
public boolean announce;

@Option(
name = "symlink_prefix",
defaultValue = "null",
Expand Down

0 comments on commit 67b71cd

Please sign in to comment.