mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 06:45:07 +02:00
8251203: Fix "no comment" warnings in java.base/java.lang and java/io
Reviewed-by: dfuchs, lancea, mchung, naoto
This commit is contained in:
parent
5585e6f63a
commit
afce1f4ebd
19 changed files with 177 additions and 28 deletions
|
@ -93,6 +93,9 @@ public class ObjectStreamClass implements Serializable {
|
|||
|
||||
@java.io.Serial
|
||||
private static final long serialVersionUID = -6120832682080437368L;
|
||||
/**
|
||||
* {@code ObjectStreamClass} has no fields for default serialization.
|
||||
*/
|
||||
@java.io.Serial
|
||||
private static final ObjectStreamField[] serialPersistentFields =
|
||||
NO_FIELDS;
|
||||
|
@ -2538,7 +2541,9 @@ public class ObjectStreamClass implements Serializable {
|
|||
}
|
||||
}
|
||||
|
||||
// a LRA cache of record deserialization constructors
|
||||
/**
|
||||
* A LRA cache of record deserialization constructors.
|
||||
*/
|
||||
@SuppressWarnings("serial")
|
||||
private static final class DeserializationConstructorsCache
|
||||
extends ConcurrentHashMap<DeserializationConstructorsCache.Key, MethodHandle> {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue