From 094caa508fa74081d861e9e8f8eb50934811bf65 Mon Sep 17 00:00:00 2001 From: jingwen Date: Mon, 18 Dec 2017 08:24:12 -0800 Subject: Automatic formatting cleanup of Android *.java files. RELNOTES: None. PiperOrigin-RevId: 179425421 --- .../java/com/google/devtools/build/android/DataResource.java | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'src/tools/android/java/com/google/devtools/build/android/DataResource.java') 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 1295f60192..16053923e1 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 @@ -15,9 +15,7 @@ package com.google.devtools.build.android; import com.google.devtools.build.android.AndroidResourceMerger.MergingException; -/** - * Represents an Android Resource parsed from an xml or binary file. - */ +/** Represents an Android Resource parsed from an xml or binary file. */ public interface DataResource extends DataValue { /** Write as a resource using the supplied {@link AndroidDataWritingVisitor}. */ void writeResource(FullyQualifiedName key, AndroidDataWritingVisitor writer) @@ -25,7 +23,7 @@ public interface DataResource extends DataValue { /** * Combines these resource together and returns a single resource. - * + * * @param resource Another resource to be combined with this one. * @return A union of the values of these two resources. * @throws IllegalArgumentException if either resource cannot combine with the other. @@ -34,7 +32,7 @@ public interface DataResource extends DataValue { /** Queue up writing the resource to the given {@link AndroidResourceSymbolSink}. */ void writeResourceToClass(FullyQualifiedName key, AndroidResourceSymbolSink sink); - + /** Overwrite another {@link DataResource}. */ DataResource overwrite(DataResource other); } -- cgit v1.2.3