mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-26 22:34:27 +02:00
8314738: Remove all occurrences of and support for @revised
Reviewed-by: mr
This commit is contained in:
parent
6b9df037e4
commit
f39fc0aa2d
28 changed files with 8 additions and 124 deletions
|
@ -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 {
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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();
|
||||
|
|
|
@ -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();
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue