mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 14:54:52 +02:00
8284922: Fix some doc-comment issues on methods with package access in JDK API
Reviewed-by: darcy, iris, bpb
This commit is contained in:
parent
6e36c4550a
commit
d3d71ea289
3 changed files with 6 additions and 5 deletions
|
@ -5876,6 +5876,7 @@ System.out.println((int) f0.invokeExact("x", "y")); // 2
|
|||
* V adapter(A... a, B... b) {
|
||||
* T t = target(a...);
|
||||
* return filter(b..., t);
|
||||
* }
|
||||
* }</pre></blockquote>
|
||||
* <p>
|
||||
* If the filter handle is a unary function, then this method behaves like {@link #filterReturnValue(MethodHandle, MethodHandle)}.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 1996, 2019, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 1996, 2022, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
|
@ -76,7 +76,7 @@ public class MissingResourceException extends RuntimeException {
|
|||
* the key for the missing resource.
|
||||
* @param cause
|
||||
* the cause (which is saved for later retrieval by the
|
||||
* {@link Throwable.getCause()} method). (A null value is
|
||||
* {@link Throwable#getCause()} method). (A null value is
|
||||
* permitted, and indicates that the cause is nonexistent
|
||||
* or unknown.)
|
||||
*/
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2013, 2021, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2013, 2022, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
|
@ -209,9 +209,9 @@ public enum JDBCType implements SQLType {
|
|||
private final Integer type;
|
||||
|
||||
/**
|
||||
* Constructor to specify the data type value from {@code Types) for
|
||||
* Constructor to specify the data type value from {@code Types} for
|
||||
* this data type.
|
||||
* @param type The value from {@code Types) for this data type
|
||||
* @param type The value from {@code Types} for this data type
|
||||
*/
|
||||
JDBCType(final Integer type) {
|
||||
this.type = type;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue