aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/rules/android
diff options
context:
space:
mode:
authorGravatar Lukacs Berki <lberki@google.com>2015-06-29 14:33:59 +0000
committerGravatar Damien Martin-Guillerez <dmarting@google.com>2015-06-29 16:40:16 +0000
commit4bc03a988be48e550c144f555fe923792b26eb26 (patch)
tree92f287918765ff69fd1d775a1df638263640fc9e /src/main/java/com/google/devtools/build/lib/rules/android
parent1572344e14751960111c30eddec04f59f868cec7 (diff)
Eliminate BuildConfiguration.getShortName().
This was only used in error reporting, and the interface of BuildConfiguration could use some more simplicity. The comment on BuildConfiguration.getShortName() was confusing: that field is *not* actually used to compute the output directory name, which took me a few minutes to realize. -- MOS_MIGRATED_REVID=97128287
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/rules/android')
-rw-r--r--src/main/java/com/google/devtools/build/lib/rules/android/AndroidConfiguration.java5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/rules/android/AndroidConfiguration.java b/src/main/java/com/google/devtools/build/lib/rules/android/AndroidConfiguration.java
index 799409b44d..1eb3a161f0 100644
--- a/src/main/java/com/google/devtools/build/lib/rules/android/AndroidConfiguration.java
+++ b/src/main/java/com/google/devtools/build/lib/rules/android/AndroidConfiguration.java
@@ -232,11 +232,6 @@ public class AndroidConfiguration extends BuildConfiguration.Fragment {
return fatApk ? "fat-apk" : null;
}
- @Override
- public String getConfigurationNameSuffix() {
- return fatApk ? "fat-apk" : null;
- }
-
public Label getProguardLabel() {
return proguard;
}