-
Bug
-
Resolution: Fixed
-
P4
-
None
-
None
-
b27
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8236315 | 15 | Arthur Eubanks | P4 | Resolved | Fixed | team |
In ./java.base/share/classes/java/util/stream/MatchOps.java
enum MatchKind {
/** Do all elements match the predicate? */
ANY(true, true),
/** Do any elements match the predicate? */
ALL(false, false),
...
}
javadoc is flipped for ANY and ALL.
enum MatchKind {
/** Do all elements match the predicate? */
ANY(true, true),
/** Do any elements match the predicate? */
ALL(false, false),
...
}
javadoc is flipped for ANY and ALL.
- backported by
-
JDK-8236315 Incorrect javadoc in MatchKind
-
- Resolved
-
- duplicates
-
JDK-8213238 Erroneous Javadoc in java.util.stream.MatchOps.MatchKind
-
- Closed
-