aboutsummaryrefslogtreecommitdiff
path: root/guava-tests/test/com/google/common/collect/ForwardingMapTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'guava-tests/test/com/google/common/collect/ForwardingMapTest.java')
-rw-r--r--guava-tests/test/com/google/common/collect/ForwardingMapTest.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/guava-tests/test/com/google/common/collect/ForwardingMapTest.java b/guava-tests/test/com/google/common/collect/ForwardingMapTest.java
index 62988ed01..6ca5b8cc1 100644
--- a/guava-tests/test/com/google/common/collect/ForwardingMapTest.java
+++ b/guava-tests/test/com/google/common/collect/ForwardingMapTest.java
@@ -329,10 +329,11 @@ public class ForwardingMapTest extends TestCase {
};
}
- private static final ImmutableMap<String, String> JUF_METHODS = ImmutableMap.of(
- "java.util.function.Predicate", "test",
- "java.util.function.Consumer", "accept",
- "java.util.function.IntFunction", "apply");
+ private static final ImmutableMap<String, String> JUF_METHODS =
+ ImmutableMap.of(
+ "java.util.function.Predicate", "test",
+ "java.util.function.Consumer", "accept",
+ "java.util.function.IntFunction", "apply");
private static Object getDefaultValue(final TypeToken<?> type) {
Class<?> rawType = type.getRawType();
@@ -387,8 +388,7 @@ public class ForwardingMapTest extends TestCase {
}
}
} catch (Throwable cause) {
- throw new InvocationTargetException(
- cause, method + " with args: " + Arrays.toString(args));
+ throw new InvocationTargetException(cause, method + " with args: " + Arrays.toString(args));
}
}
}