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

@ -499,8 +499,6 @@ public class FileInputStream extends InputStream
* this method should be prepared to handle possible reentrant invocation.
*
* @throws IOException {@inheritDoc}
*
* @revised 1.4
*/
@Override
public void close() throws IOException {

View file

@ -392,8 +392,6 @@ public class FileOutputStream extends OutputStream
* this method should be prepared to handle possible reentrant invocation.
*
* @throws IOException if an I/O error occurs.
*
* @revised 1.4
*/
@Override
public void close() throws IOException {

View file

@ -157,8 +157,6 @@ public class InputStreamReader extends Reader {
* {@code null} if the stream has been closed
*
* @see Charset
*
* @revised 1.4
*/
public String getEncoding() {
return sd.getEncoding();

View file

@ -176,8 +176,6 @@ public class OutputStreamWriter extends Writer {
* {@code null} if the stream has been closed
*
* @see Charset
*
* @revised 1.4
*/
public String getEncoding() {
return se.getEncoding();

View file

@ -129,7 +129,6 @@ public class RandomAccessFile implements DataOutput, DataInput, Closeable {
* @see java.lang.SecurityException
* @see java.lang.SecurityManager#checkRead(java.lang.String)
* @see java.lang.SecurityManager#checkWrite(java.lang.String)
* @revised 1.4
*/
public RandomAccessFile(String name, String mode)
throws FileNotFoundException
@ -215,7 +214,6 @@ public class RandomAccessFile implements DataOutput, DataInput, Closeable {
* @see java.lang.SecurityManager#checkRead(java.lang.String)
* @see java.lang.SecurityManager#checkWrite(java.lang.String)
* @see java.nio.channels.FileChannel#force(boolean)
* @revised 1.4
*/
public RandomAccessFile(File file, String mode)
throws FileNotFoundException
@ -703,8 +701,6 @@ public class RandomAccessFile implements DataOutput, DataInput, Closeable {
* this method should be prepared to handle possible reentrant invocation.
*
* @throws IOException if an I/O error occurs.
*
* @revised 1.4
*/
public void close() throws IOException {
if (closed) {