mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 06:45:07 +02:00
8253100: Fix "no comment" warnings in java.base/java.net
Reviewed-by: ryadav, chegar, naoto, alanb
This commit is contained in:
parent
d185a6c53e
commit
5f4bc0aca6
10 changed files with 135 additions and 34 deletions
|
@ -162,6 +162,9 @@ public final class URLPermission extends Permission {
|
|||
private transient Authority authority;
|
||||
|
||||
// serialized field
|
||||
/**
|
||||
* The actions string
|
||||
*/
|
||||
private String actions;
|
||||
|
||||
/**
|
||||
|
@ -504,7 +507,11 @@ public final class URLPermission extends Permission {
|
|||
}
|
||||
|
||||
/**
|
||||
* restore the state of this object from stream
|
||||
* Restores the state of this object from stream.
|
||||
*
|
||||
* @param s the {@code ObjectInputStream} from which data is read
|
||||
* @throws IOException if an I/O error occurs
|
||||
* @throws ClassNotFoundException if a serialized class cannot be loaded
|
||||
*/
|
||||
@java.io.Serial
|
||||
private void readObject(ObjectInputStream s)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue