diff options
author | Paul Duffin <paulduffin@google.com> | 2019-01-28 16:01:27 +0000 |
---|---|---|
committer | Paul Duffin <paulduffin@google.com> | 2019-01-28 16:01:27 +0000 |
commit | 49c9df46f79c3a1df92b89464f8bd3fa9f48418e (patch) | |
tree | fb09a98d48b4085fdcdeb4a7e57a17acfbdf0b14 /ojluni/annotations/hiddenapi/java/util/HashMap.java | |
parent | af8b6bd4af9da1f0be94a73776d78f048cea9e22 (diff) |
Add HashMap.EntryIterator.next() to greylist
Bug: 122551864
Test: make checkbuild
Change-Id: I25ef26f886a6ed7b5ddc0028bbb742f5b27cbdcd
Diffstat (limited to 'ojluni/annotations/hiddenapi/java/util/HashMap.java')
-rw-r--r-- | ojluni/annotations/hiddenapi/java/util/HashMap.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ojluni/annotations/hiddenapi/java/util/HashMap.java b/ojluni/annotations/hiddenapi/java/util/HashMap.java index 90db8fbe0b..1010dad1c9 100644 --- a/ojluni/annotations/hiddenapi/java/util/HashMap.java +++ b/ojluni/annotations/hiddenapi/java/util/HashMap.java @@ -290,6 +290,7 @@ public class HashMap<K, V> extends java.util.AbstractMap<K, V> final class EntryIterator extends java.util.HashMap.HashIterator implements java.util.Iterator<java.util.Map.Entry<K, V>> { + @UnsupportedAppUsage(trackingBug = 122551864) public java.util.Map.Entry<K, V> next() { throw new RuntimeException("Stub!"); } |