Re: RFR: JDK-8269843: typo in LinkedHashMap::removeEldestEntry spec

2023-04-05 Thread Martin Buchholz
On Thu, 6 Apr 2023 00:49:33 GMT, Tingjun Yuan wrote: > Fix a typo in the specification of > `java.util.LinkedHashMap.removeEldestEntry(Map.Entry)`. > >> This is the entry that will be removed **it** this method returns `true`. > > will become: > >> This is the entry that will be removed **if*

RFR: JDK-8269843: typo in LinkedHashMap::removeEldestEntry spec

2023-04-05 Thread Tingjun Yuan
Fix a typo in the specification of `java.util.LinkedHashMap.removeEldestEntry(Map.Entry)`. > This is the entry that will be removed **it** this method returns `true`. will become: > This is the entry that will be removed **if** this method returns `true`. - Commit messages: - Fix