aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/skylarkbuildapi
diff options
context:
space:
mode:
authorGravatar cparsons <cparsons@google.com>2018-07-13 09:11:01 -0700
committerGravatar Copybara-Service <copybara-piper@google.com>2018-07-13 09:12:05 -0700
commit22977e6b4eeea71e5e83ed2cdf3b33f7b3ce10e7 (patch)
tree1533a43b7c3be32d87265ed356d750ccdae54a11 /src/main/java/com/google/devtools/build/lib/skylarkbuildapi
parent79aa7b4d67893ad347ab40d06323dfe5503ac51e (diff)
Remove documentation for the old Actions provider.
This old provider will be deprecated, and removing documentation for this type is of higher priority as it conflicts with the documentation for "actions", another skylark type. RELNOTES: None. PiperOrigin-RevId: 204480354
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/skylarkbuildapi')
-rw-r--r--src/main/java/com/google/devtools/build/lib/skylarkbuildapi/ActionsInfoProviderApi.java13
1 files changed, 2 insertions, 11 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/skylarkbuildapi/ActionsInfoProviderApi.java b/src/main/java/com/google/devtools/build/lib/skylarkbuildapi/ActionsInfoProviderApi.java
index 333fa7817e..d19086ae6a 100644
--- a/src/main/java/com/google/devtools/build/lib/skylarkbuildapi/ActionsInfoProviderApi.java
+++ b/src/main/java/com/google/devtools/build/lib/skylarkbuildapi/ActionsInfoProviderApi.java
@@ -21,17 +21,8 @@ import com.google.devtools.build.lib.skylarkinterface.SkylarkModuleCategory;
* Provider for structs containing actions created during the analysis of a rule.
*/
@SkylarkModule(name = "Actions",
- doc = "<i>(Note: This is a provider type. Don't instantiate it yourself; use it to retrieve a "
- + "provider object from a <a href=\"Target.html\">Target</a>.)</i>"
- + "<br/><br/>"
- + "Provides access to the <a href=\"Action.html\">actions</a> generated by a rule. "
- + "There is one field, <code>by_file</code>, which is a dictionary from an output "
- + "of the rule to its corresponding generating action. "
- + "<br/><br/>"
- + "This is designed for testing rules, and should not be accessed outside "
- + "of test logic. This provider is only available for targets generated by rules "
- + "that have <a href=\"globals.html#rule._skylark_testable\">_skylark_testable</a> "
- + "set to <code>True</code>.",
+ doc = "",
+ documented = false,
category = SkylarkModuleCategory.PROVIDER)
// TODO(cparsons): Deprecate and remove this API.
public interface ActionsInfoProviderApi extends ProviderApi {}