mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 14:54:52 +02:00
8235730: Incorrect javadoc in MatchKind
Reviewed-by: martin, prappo
This commit is contained in:
parent
67cea3ea02
commit
d3f7666418
1 changed files with 2 additions and 2 deletions
|
@ -48,10 +48,10 @@ final class MatchOps {
|
|||
* match.
|
||||
*/
|
||||
enum MatchKind {
|
||||
/** Do all elements match the predicate? */
|
||||
/** Do any elements match the predicate? */
|
||||
ANY(true, true),
|
||||
|
||||
/** Do any elements match the predicate? */
|
||||
/** Do all elements match the predicate? */
|
||||
ALL(false, false),
|
||||
|
||||
/** Do no elements match the predicate? */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue