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

@ -373,7 +373,6 @@ import static sun.security.util.SecurityConstants.GET_CLASSLOADER_PERMISSION;
* @see MissingResourceException
* @see ResourceBundleProvider
* @since 1.1
* @revised 9
*/
public abstract class ResourceBundle {
@ -894,7 +893,6 @@ public abstract class ResourceBundle {
* @throws UnsupportedOperationException
* if this method is called in a named module
* @since 1.6
* @revised 9
*/
@CallerSensitive
public static final ResourceBundle getBundle(String baseName,
@ -1054,7 +1052,6 @@ public abstract class ResourceBundle {
* @throws UnsupportedOperationException
* if this method is called in a named module
* @since 1.6
* @revised 9
*/
@CallerSensitive
public static final ResourceBundle getBundle(String baseName, Locale targetLocale,
@ -1267,7 +1264,6 @@ public abstract class ResourceBundle {
* @throws MissingResourceException
* if no resource bundle for the specified base name can be found
* @since 1.2
* @revised 9
* @see <a href="#resource-bundle-modules">Resource Bundles and Named Modules</a>
*/
@CallerSensitive
@ -1492,7 +1488,6 @@ public abstract class ResourceBundle {
* @throws UnsupportedOperationException
* if this method is called in a named module
* @since 1.6
* @revised 9
*/
@CallerSensitive
public static ResourceBundle getBundle(String baseName, Locale targetLocale,
@ -2235,7 +2230,6 @@ public abstract class ResourceBundle {
* by the caller's module.
*
* @since 1.6
* @revised 9
* @see ResourceBundle.Control#getTimeToLive(String,Locale)
*/
@CallerSensitive
@ -2524,7 +2518,6 @@ public abstract class ResourceBundle {
* of {@link ResourceBundleControlProvider} are ignored in named modules.
*
* @since 1.6
* @revised 9
* @see java.util.spi.ResourceBundleProvider
*/
public static class Control {
@ -3150,7 +3143,6 @@ public abstract class ResourceBundle {
* if an error occurred when reading resources using
* any I/O operations
* @see java.util.spi.ResourceBundleProvider#getBundle(String, Locale)
* @revised 9
*/
public ResourceBundle newBundle(String baseName, Locale locale, String format,
ClassLoader loader, boolean reload)

View file

@ -386,7 +386,6 @@ import jdk.internal.reflect.Reflection;
*
* @author Mark Reinhold
* @since 1.6
* @revised 9
*/
public final class ServiceLoader<S>
@ -1355,8 +1354,6 @@ public final class ServiceLoader<S>
*
* @return An iterator that lazily loads providers for this loader's
* service
*
* @revised 9
*/
public Iterator<S> iterator() {
@ -1640,8 +1637,6 @@ public final class ServiceLoader<S>
* if the service type is not accessible to the caller or the
* caller is in an explicit module and its module descriptor does
* not declare that it uses {@code service}
*
* @revised 9
*/
@CallerSensitive
@SuppressWarnings("doclint:reference") // cross-module links
@ -1686,8 +1681,6 @@ public final class ServiceLoader<S>
* if the service type is not accessible to the caller or the
* caller is in an explicit module and its module descriptor does
* not declare that it uses {@code service}
*
* @revised 9
*/
@CallerSensitive
public static <S> ServiceLoader<S> load(Class<S> service) {
@ -1721,8 +1714,6 @@ public final class ServiceLoader<S>
* if the service type is not accessible to the caller or the
* caller is in an explicit module and its module descriptor does
* not declare that it uses {@code service}
*
* @revised 9
*/
@CallerSensitive
public static <S> ServiceLoader<S> loadInstalled(Class<S> service) {

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, 2017, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2012, 2023, 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
@ -44,7 +44,6 @@ import java.util.ResourceBundle;
*
* @author Masayoshi Okutsu
* @since 1.8
* @revised 9
* @see ResourceBundle#getBundle(String, java.util.Locale, ClassLoader, ResourceBundle.Control)
* ResourceBundle.getBundle
* @see java.util.ServiceLoader#load(Class)