Skip to content

Commit c5462bb

Browse files
committed
8255989: Remove explicitly unascribed authorship from Java source files
Reviewed-by: redestad, mr, mchung, iris, serb
1 parent 358f5d2 commit c5462bb

File tree

77 files changed

+60
-140
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+60
-140
lines changed

src/java.base/share/classes/java/io/DataOutputStream.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1994, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1994, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -30,7 +30,6 @@
3030
* types to an output stream in a portable way. An application can
3131
* then use a data input stream to read the data back in.
3232
*
33-
* @author unascribed
3433
* @see java.io.DataInputStream
3534
* @since 1.0
3635
*/

src/java.base/share/classes/java/io/Externalizable.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1996, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1996, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -55,7 +55,6 @@
5555
* the writeReplace and readResolve methods documented in the Serializable
5656
* interface.<br>
5757
*
58-
* @author unascribed
5958
* @see java.io.ObjectOutputStream
6059
* @see java.io.ObjectInputStream
6160
* @see java.io.ObjectOutput

src/java.base/share/classes/java/io/File.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,6 @@
142142
* additional file operations, file attributes, and I/O exceptions to help
143143
* diagnose errors when an operation on a file fails.
144144
*
145-
* @author unascribed
146145
* @since 1.0
147146
*/
148147

src/java.base/share/classes/java/io/FileNotFoundException.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
* constructors if the file does exist but for some reason is inaccessible, for
3737
* example when an attempt is made to open a read-only file for writing.
3838
*
39-
* @author unascribed
4039
* @since 1.0
4140
*/
4241

src/java.base/share/classes/java/io/IOException.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1994, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1994, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -30,7 +30,6 @@
3030
* class is the general class of exceptions produced by failed or
3131
* interrupted I/O operations.
3232
*
33-
* @author unascribed
3433
* @see java.io.InputStream
3534
* @see java.io.OutputStream
3635
* @since 1.0

src/java.base/share/classes/java/io/InterruptedIOException.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
* indicates how many bytes were successfully transferred before
3434
* the interruption occurred.
3535
*
36-
* @author unascribed
3736
* @see java.io.InputStream
3837
* @see java.io.OutputStream
3938
* @see java.lang.Thread#interrupt()

src/java.base/share/classes/java/io/InvalidClassException.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1996, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1996, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -39,7 +39,6 @@
3939
* Specification</cite>
4040
* </UL>
4141
*
42-
* @author unascribed
4342
* @since 1.1
4443
*/
4544
public class InvalidClassException extends ObjectStreamException {

src/java.base/share/classes/java/io/InvalidObjectException.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1996, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1996, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -32,7 +32,6 @@
3232
* @see ObjectInputValidation
3333
* @since 1.1
3434
*
35-
* @author unascribed
3635
* @since 1.1
3736
*/
3837
public class InvalidObjectException extends ObjectStreamException {

src/java.base/share/classes/java/io/NotActiveException.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1996, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1996, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -28,7 +28,6 @@
2828
/**
2929
* Thrown when serialization or deserialization is not active.
3030
*
31-
* @author unascribed
3231
* @since 1.1
3332
*/
3433
public class NotActiveException extends ObjectStreamException {

src/java.base/share/classes/java/io/NotSerializableException.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1996, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1996, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -30,7 +30,6 @@
3030
* The serialization runtime or the class of the instance can throw
3131
* this exception. The argument should be the name of the class.
3232
*
33-
* @author unascribed
3433
* @since 1.1
3534
*/
3635
public class NotSerializableException extends ObjectStreamException {

0 commit comments

Comments
 (0)