diff --git a/src/main/java/com/google/devtools/common/options/Option.java b/src/main/java/com/google/devtools/common/options/Option.java
index 5cd6b73c2ce3ad..784ba640d41f7b 100644
--- a/src/main/java/com/google/devtools/common/options/Option.java
+++ b/src/main/java/com/google/devtools/common/options/Option.java
@@ -63,17 +63,11 @@
* "null" is only applicable when computing the default value; if specified
* on the command-line, this string will have its usual literal meaning.
*
- *
The default value for flags that set allowMultiple to true should be set with
- * {@link #defaultMultipleValue()}
+ *
The default value for flags that set allowMultiple is always the empty
+ * list and its default value is ignored.
*/
String defaultValue();
- /**
- * This method is an extension of {@link #defaultValue()} and it enables setting default values
- * for flags whose allowMultiple is true. In that case {@link #defaultValue()} is ignored.
- */
- String[] defaultMultipleValue() default {};
-
/**
* A string describing the category of options that this belongs to. {@link
* OptionsParser#describeOptions} prints options of the same category grouped
diff --git a/src/main/java/com/google/devtools/common/options/OptionsData.java b/src/main/java/com/google/devtools/common/options/OptionsData.java
index 2683121062900d..0038cad95356b7 100644
--- a/src/main/java/com/google/devtools/common/options/OptionsData.java
+++ b/src/main/java/com/google/devtools/common/options/OptionsData.java
@@ -144,36 +144,29 @@ private static List getAllAnnotatedFields(Class extends OptionsBase> op
}
private static Object retrieveDefaultFromAnnotation(Field optionField) {
- Option annotation = optionField.getAnnotation(Option.class);
- // If an option can be specified multiple times then get the default value from the
- // defaultMultipleValue and ignore defaultValue
- if (annotation.allowMultiple()) {
- // Create a list with each value in defaultMultipleValue converted
- String[] defaultMultipleValueString =
- OptionsParserImpl.getDefaultMultipleOptionString(optionField);
- ImmutableList.Builder