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

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

Revert "Track libcore update of Map classes to jdk8u60"

May have broken stage-aosp-master since the CL from aosp-master was for
some reason only merged to mirror-aosp-master but no further.

Bug: 30911913

This reverts commit fb2ade3d.

Change-Id: I696d2b0636708fc6c73a53cd3cae36fa5bd0f173
parent fb2ade3d
Loading
Loading
Loading
Loading
+0 −8
Original line number Diff line number Diff line
@@ -58835,17 +58835,9 @@ 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>);
  }