diff options
| author | 2016-04-25 09:31:40 +0000 | |
|---|---|---|
| committer | 2016-04-25 09:31:40 +0000 | |
| commit | 94adc6ce96c4405134141e4e7a7ff8512e2dda1b (patch) | |
| tree | 96eff6569afdf94f9f41c13b7f12ded0e487c0e5 | |
| parent | 823e05b2db229549c33892a0aa303fd7fb10a214 (diff) | |
| parent | f9446f77a2d9280f4d0778a02d4cb93cc4a82714 (diff) | |
Merge "Track libcore change e2270147c6ddfb164776b68295078a5e6c6dfee7"
| -rw-r--r-- | api/current.txt | 3 | ||||
| -rw-r--r-- | api/system-current.txt | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/api/current.txt b/api/current.txt index 57e3c9b08d85..e31bf9eb3b0f 100644 --- a/api/current.txt +++ b/api/current.txt @@ -55749,6 +55749,7 @@ package java.util { method public java.lang.Object clone(); 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 void replaceAll(java.util.function.BiFunction<? super K, ? super V, ? extends V>); } public class IllegalFormatCodePointException extends java.util.IllegalFormatException { @@ -56731,6 +56732,8 @@ package java.util { method public java.util.NavigableSet<K> navigableKeySet(); method public java.util.Map.Entry<K, V> pollFirstEntry(); method public java.util.Map.Entry<K, V> pollLastEntry(); + 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>); method public java.util.NavigableMap<K, V> subMap(K, boolean, K, boolean); method public java.util.SortedMap<K, V> subMap(K, K); diff --git a/api/system-current.txt b/api/system-current.txt index f5c69786de90..77d8557cfb50 100644 --- a/api/system-current.txt +++ b/api/system-current.txt @@ -58367,6 +58367,7 @@ package java.util { method public java.lang.Object clone(); 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 void replaceAll(java.util.function.BiFunction<? super K, ? super V, ? extends V>); } public class IllegalFormatCodePointException extends java.util.IllegalFormatException { @@ -59349,6 +59350,8 @@ package java.util { method public java.util.NavigableSet<K> navigableKeySet(); method public java.util.Map.Entry<K, V> pollFirstEntry(); method public java.util.Map.Entry<K, V> pollLastEntry(); + 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>); method public java.util.NavigableMap<K, V> subMap(K, boolean, K, boolean); method public java.util.SortedMap<K, V> subMap(K, K); |