summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Tobias Thierer <tobiast@google.com> 2016-08-11 19:47:02 +0100
committer Tobias Thierer <tobiast@google.com> 2016-08-17 11:06:27 +0100
commitfb2ade3dcab0962f18acab720875c75622f412ed (patch)
treeeb60ea24a54ffe52b22870b69ee704b22a2ef1ae
parent9c0b881c9d6b9705ed3328e10726aa1e2e24a449 (diff)
Track libcore update of Map classes to jdk8u60
This adds the api/test-current.txt changes corresponding to http://r.android.com/238640 This CL requires base CLs, which will get merged from aosp-master, in order to build. Change-Id: I0aa2e9c4c7b3b6af79c9885e7e0fdde8880e71c8
-rw-r--r--api/test-current.txt8
1 files changed, 8 insertions, 0 deletions
diff --git a/api/test-current.txt b/api/test-current.txt
index 1919abff0d0f..1a1a43a33fd6 100644
--- a/api/test-current.txt
+++ b/api/test-current.txt
@@ -58835,9 +58835,17 @@ package java.util {
ctor public HashMap();
ctor public HashMap(java.util.Map<? extends K, ? extends V>);
method public java.lang.Object clone();
+ method public V compute(K, java.util.function.BiFunction<? super K, ? super V, ? extends V>);
+ method public V computeIfAbsent(K, java.util.function.Function<? super K, ? extends V>);
+ method public V computeIfPresent(K, java.util.function.BiFunction<? super K, ? super V, ? extends V>);
method public java.util.Set<java.util.Map.Entry<K, V>> entrySet();
method public void forEach(java.util.function.BiConsumer<? super K, ? super V>);
+ method public V getOrDefault(java.lang.Object, V);
+ method public V merge(K, V, java.util.function.BiFunction<? super V, ? super V, ? extends V>);
+ method public V putIfAbsent(K, V);
+ method public boolean remove(java.lang.Object, java.lang.Object);
method public boolean replace(K, V, V);
+ method public V replace(K, V);
method public void replaceAll(java.util.function.BiFunction<? super K, ? super V, ? extends V>);
}