8314738: Remove all occurrences of and support for @revised

Reviewed-by: mr
This commit is contained in:
Pavel Rappo 2023-08-22 13:02:53 +00:00
parent 6b9df037e4
commit f39fc0aa2d
28 changed files with 8 additions and 124 deletions

View file

@ -292,7 +292,6 @@ import static java.lang.module.ModuleDescriptor.Modifier.SYNTHETIC;
* @author Peter Jones
* @see InvocationHandler
* @since 1.3
* @revised 9
*/
public class Proxy implements java.io.Serializable {
@java.io.Serial
@ -382,7 +381,6 @@ public class Proxy implements java.io.Serializable {
* to create a proxy instance instead.
*
* @see <a href="#membership">Package and Module Membership of Proxy Class</a>
* @revised 9
*/
@Deprecated
@CallerSensitive
@ -1015,7 +1013,6 @@ public class Proxy implements java.io.Serializable {
* {@code null}
*
* @see <a href="#membership">Package and Module Membership of Proxy Class</a>
* @revised 9
*/
@CallerSensitive
public static Object newProxyInstance(ClassLoader loader,
@ -1100,8 +1097,6 @@ public class Proxy implements java.io.Serializable {
* @return {@code true} if the class is a proxy class and
* {@code false} otherwise
* @throws NullPointerException if {@code cl} is {@code null}
*
* @revised 9
*/
public static boolean isProxyClass(Class<?> cl) {
return Proxy.class.isAssignableFrom(cl) && ProxyBuilder.isProxyClass(cl);