summaryrefslogtreecommitdiff
path: root/java/com/google/devtools/build/android/Converters.java
diff options
context:
space:
mode:
authorAdam Michael <ajmichael@google.com>2017-01-06 23:32:00 +0000
committerColin Cross <ccross@android.com>2017-02-16 22:39:35 -0800
commit26974fb33e603e0e577fc6cddc17e8993c48f657 (patch)
treec63a2df579e9dc1b8db37dbf31d81cd0462558d0 /java/com/google/devtools/build/android/Converters.java
parente90ef10c448d8dddefe672283686ce350c5f9632 (diff)
downloaddesugar-26974fb33e603e0e577fc6cddc17e8993c48f657.tar.gz
Delete some dead android rules and tools code.
-- PiperOrigin-RevId: 143823562 MOS_MIGRATED_REVID=143823562 GitOrigin-RevId: eae0fa660bcbf639149fbf7bb2952ebbd2542e26 Change-Id: I4a2ca3c9076714e2e9061c7061b671e5132047b3
Diffstat (limited to 'java/com/google/devtools/build/android/Converters.java')
-rw-r--r--java/com/google/devtools/build/android/Converters.java16
1 files changed, 0 insertions, 16 deletions
diff --git a/java/com/google/devtools/build/android/Converters.java b/java/com/google/devtools/build/android/Converters.java
index 8bd6a20..63f5980 100644
--- a/java/com/google/devtools/build/android/Converters.java
+++ b/java/com/google/devtools/build/android/Converters.java
@@ -417,22 +417,6 @@ public final class Converters {
* may contain colons and commas as long as they are escaped with a backslash. The key type is
* Path and the value type is String.
*/
- public static class PathStringDictionaryConverter extends DictionaryConverter<Path, String> {
- public PathStringDictionaryConverter() {
- super(new PathConverter(), IDENTITY_CONVERTER);
- }
- // The way {@link OptionsData} checks for generic types requires convert to have literal type
- // parameters and not argument type parameters.
- @Override public Map<Path, String> convert(String input) throws OptionsParsingException {
- return super.convert(input);
- }
- }
-
- /**
- * A converter for dictionary arguments of the format key:value[,key:value]*. The keys and values
- * may contain colons and commas as long as they are escaped with a backslash. The key type is
- * Path and the value type is String.
- */
public static class ExistingPathStringDictionaryConverter
extends DictionaryConverter<Path, String> {
public ExistingPathStringDictionaryConverter() {