aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/Constants.java
diff options
context:
space:
mode:
authorGravatar Luis Fernando Pino Duque <lpino@google.com>2016-02-03 12:57:04 +0000
committerGravatar David Chen <dzc@google.com>2016-02-03 22:06:21 +0000
commit0d1a53cf5614d621518914682ec44c6f20a27ab7 (patch)
tree6c8e68a984761ed7d3f5f082d2f38e4b52584ce9 /src/main/java/com/google/devtools/build/lib/Constants.java
parentcc3e6e3cf6fb55700607ebdadc70b804f5861c53 (diff)
Remove the MAIN_RULE_CLASS_PROVIDER constant and turn it into a command line parameter.
-- MOS_MIGRATED_REVID=113730588
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/Constants.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/Constants.java4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/Constants.java b/src/main/java/com/google/devtools/build/lib/Constants.java
index edf6be59ab..cdf54dba83 100644
--- a/src/main/java/com/google/devtools/build/lib/Constants.java
+++ b/src/main/java/com/google/devtools/build/lib/Constants.java
@@ -34,10 +34,6 @@ public final class Constants {
// Default value for the --package_path flag if not otherwise set.
public static final ImmutableList<String> DEFAULT_PACKAGE_PATH = ImmutableList.of("%workspace%");
- // The rule documentation generator iterates over all rules in the class by this name.
- public static final String MAIN_RULE_CLASS_PROVIDER =
- "com.google.devtools.build.lib.bazel.rules.BazelRuleClassProvider";
-
// Native Java deps are all linked into a single file, which is named with this value + ".so".
public static final String NATIVE_DEPS_LIB_SUFFIX = "_nativedeps";