aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/tools/android/java/com/google/devtools/build/android/DataResource.java
diff options
context:
space:
mode:
authorGravatar Googler <noreply@google.com>2016-03-29 17:12:06 +0000
committerGravatar Klaus Aehlig <aehlig@google.com>2016-03-30 08:13:29 +0000
commit4f6d0350e1ea71acf8eea6732fd14cd1bb4ac3de (patch)
treef3821f3ce02ef3e0b489725a44b934fe4ff05006 /src/tools/android/java/com/google/devtools/build/android/DataResource.java
parent229cc65a683a679b7c51cc989b898e6b2dba15c0 (diff)
3.74 of 5: Remove DataKey from DataValue, FileDataResource and XmlDataResource.
This is mostly mechanical, cleaning up the vestigal marks of combining the value and key. The only mildly odd change is making the OverwritableConsumer and NonOverwritableConsumer package visible, for testing purposes. -- MOS_MIGRATED_REVID=118474980
Diffstat (limited to 'src/tools/android/java/com/google/devtools/build/android/DataResource.java')
-rw-r--r--src/tools/android/java/com/google/devtools/build/android/DataResource.java7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/tools/android/java/com/google/devtools/build/android/DataResource.java b/src/tools/android/java/com/google/devtools/build/android/DataResource.java
index e369a08bb0..06bd6416af 100644
--- a/src/tools/android/java/com/google/devtools/build/android/DataResource.java
+++ b/src/tools/android/java/com/google/devtools/build/android/DataResource.java
@@ -26,11 +26,4 @@ public interface DataResource extends DataValue {
* @throws IOException if there are issues with writing the resource.
*/
void write(Path newResourceDirectory) throws IOException;
-
- /**
- * Compares one data resource to another.
- *
- * Not implementing Comparable as it would conlfict with DataAsset.
- */
- int compareTo(DataResource other);
}