Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fb2ade3d authored by Tobias Thierer's avatar Tobias Thierer
Browse files

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
parent 9c0b881c
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -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>);
  }