aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/tools/android/java/com/google/devtools/build/android/xml/AttrXmlResourceValue.java
diff options
context:
space:
mode:
authorGravatar jcater <jcater@google.com>2018-05-02 08:17:31 -0700
committerGravatar Copybara-Service <copybara-piper@google.com>2018-05-02 08:18:51 -0700
commitd61a185de8582d29dda7525bb04d8ffc5be3bd11 (patch)
tree56c94776bceaa11ee55af9fce5a1307e71a22a70 /src/tools/android/java/com/google/devtools/build/android/xml/AttrXmlResourceValue.java
parent9f2b052d93bfd188687f28fe6771f390d3626936 (diff)
Clean up code that directly imports nested classes like Builder, Entry, etc.
PiperOrigin-RevId: 195094385
Diffstat (limited to 'src/tools/android/java/com/google/devtools/build/android/xml/AttrXmlResourceValue.java')
-rw-r--r--src/tools/android/java/com/google/devtools/build/android/xml/AttrXmlResourceValue.java19
1 files changed, 10 insertions, 9 deletions
diff --git a/src/tools/android/java/com/google/devtools/build/android/xml/AttrXmlResourceValue.java b/src/tools/android/java/com/google/devtools/build/android/xml/AttrXmlResourceValue.java
index 4fc53e173a..3e030602be 100644
--- a/src/tools/android/java/com/google/devtools/build/android/xml/AttrXmlResourceValue.java
+++ b/src/tools/android/java/com/google/devtools/build/android/xml/AttrXmlResourceValue.java
@@ -44,7 +44,6 @@ import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
-import java.util.Map.Entry;
import java.util.Objects;
import java.util.Set;
import javax.annotation.CheckReturnValue;
@@ -121,7 +120,7 @@ public class AttrXmlResourceValue implements XmlResourceValue {
}
@VisibleForTesting
- private static final class BuilderEntry implements Entry<String, ResourceXmlAttrValue> {
+ private static final class BuilderEntry implements Map.Entry<String, ResourceXmlAttrValue> {
private final String name;
private final ResourceXmlAttrValue value;
@@ -148,7 +147,8 @@ public class AttrXmlResourceValue implements XmlResourceValue {
@SafeVarargs
@VisibleForTesting
- public static XmlResourceValue fromFormatEntries(Entry<String, ResourceXmlAttrValue>... entries) {
+ public static XmlResourceValue fromFormatEntries(
+ Map.Entry<String, ResourceXmlAttrValue>... entries) {
return of(ImmutableMap.copyOf(Arrays.asList(entries)));
}
@@ -157,7 +157,8 @@ public class AttrXmlResourceValue implements XmlResourceValue {
throws InvalidProtocolBufferException {
ImmutableMap.Builder<String, ResourceXmlAttrValue> formats =
ImmutableMap.<String, AttrXmlResourceValue.ResourceXmlAttrValue>builder();
- for (Entry<String, SerializeFormat.DataValueXml> entry : proto.getMappedXmlValue().entrySet()) {
+ for (Map.Entry<String, SerializeFormat.DataValueXml> entry :
+ proto.getMappedXmlValue().entrySet()) {
switch (entry.getKey()) {
case FLAGS:
formats.put(
@@ -413,7 +414,7 @@ public class AttrXmlResourceValue implements XmlResourceValue {
xmlValueBuilder
.setType(SerializeFormat.DataValueXml.XmlType.ATTR)
.putAllNamespace(namespaces.asMap());
- for (Entry<String, ResourceXmlAttrValue> entry : formats.entrySet()) {
+ for (Map.Entry<String, ResourceXmlAttrValue> entry : formats.entrySet()) {
xmlValueBuilder.putMappedXmlValue(
entry.getKey(), entry.getValue().appendTo(builder.getXmlValueBuilder()));
}
@@ -450,7 +451,7 @@ public class AttrXmlResourceValue implements XmlResourceValue {
}
@VisibleForTesting
- public static Entry<String, ResourceXmlAttrValue> asEntryOf(String... keyThenValue) {
+ public static Map.Entry<String, ResourceXmlAttrValue> asEntryOf(String... keyThenValue) {
Preconditions.checkArgument(keyThenValue.length > 0);
Preconditions.checkArgument(keyThenValue.length % 2 == 0);
ImmutableMap.Builder<String, String> builder = ImmutableMap.builder();
@@ -490,7 +491,7 @@ public class AttrXmlResourceValue implements XmlResourceValue {
@Override
public ValuesResourceDefinition writeTo(ValuesResourceDefinition writer) {
- for (Entry<String, String> entry : values.entrySet()) {
+ for (Map.Entry<String, String> entry : values.entrySet()) {
writer =
writer
.startTag("enum")
@@ -528,7 +529,7 @@ public class AttrXmlResourceValue implements XmlResourceValue {
}
@VisibleForTesting
- public static Entry<String, ResourceXmlAttrValue> asEntryOf(String... keyThenValue) {
+ public static Map.Entry<String, ResourceXmlAttrValue> asEntryOf(String... keyThenValue) {
ImmutableMap.Builder<String, String> builder = ImmutableMap.builder();
Preconditions.checkArgument(keyThenValue.length > 0);
Preconditions.checkArgument(keyThenValue.length % 2 == 0);
@@ -564,7 +565,7 @@ public class AttrXmlResourceValue implements XmlResourceValue {
@Override
public ValuesResourceDefinition writeTo(ValuesResourceDefinition writer) {
- for (Entry<String, String> entry : values.entrySet()) {
+ for (Map.Entry<String, String> entry : values.entrySet()) {
writer =
writer
.startTag("flag")