Skip to content

Commit daffaa8

Browse files
committedAug 18, 2020
8251160: Fix "no comment" warnings in java.logging
Add missing documentation to the Serialized Form of Level and LogRecord. Reviewed-by: lancea, mchung
1 parent 74ae137 commit daffaa8

File tree

2 files changed

+25
-3
lines changed

2 files changed

+25
-3
lines changed
 

‎src/java.logging/share/classes/java/util/logging/Level.java

+13-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2000, 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
@@ -25,6 +25,7 @@
2525

2626
package java.util.logging;
2727

28+
import java.io.Serial;
2829
import java.lang.ref.Reference;
2930
import java.lang.ref.ReferenceQueue;
3031
import java.lang.ref.WeakReference;
@@ -432,11 +433,20 @@ public final int intValue() {
432433
return value;
433434
}
434435

436+
@Serial
435437
private static final long serialVersionUID = -8176160795706313070L;
436438

437-
// Serialization magic to prevent "doppelgangers".
438-
// This is a performance optimization.
439+
/**
440+
* Returns a {@code Level} instance with the same {@code name},
441+
* {@code value}, and {@code resourceBundleName} as the deserialized
442+
* object.
443+
* @return a {@code Level} instance corresponding to the deserialized
444+
* object.
445+
*/
446+
@Serial
439447
private Object readResolve() {
448+
// Serialization magic to prevent "doppelgangers".
449+
// This is a performance optimization.
440450
Optional<Level> level = KnownLevel.matches(this);
441451
if (level.isPresent()) {
442452
return level.get();

‎src/java.logging/share/classes/java/util/logging/LogRecord.java

+12
Original file line numberDiff line numberDiff line change
@@ -599,6 +599,10 @@ public void setThrown(Throwable thrown) {
599599
* by String values for each parameter. If a parameter is null, then
600600
* a null String is written. Otherwise the output of Object.toString()
601601
* is written.
602+
*
603+
* @param out the {@code ObjectOutputStream} to write to
604+
*
605+
* @throws IOException if I/O errors occur
602606
*/
603607
@Serial
604608
private void writeObject(ObjectOutputStream out) throws IOException {
@@ -647,6 +651,14 @@ private void writeObject(ObjectOutputStream out) throws IOException {
647651
* {@code threadID} which may be anything between {@code Integer.MIN_VALUE}
648652
* and {Integer.MAX_VALUE}.
649653
* </ul>
654+
*
655+
* See {@code writeObject} for a description of the serial form.
656+
*
657+
* @param in the {@code ObjectInputStream} to read from
658+
*
659+
* @throws ClassNotFoundException if the class of a serialized object
660+
* could not be found.
661+
* @throws IOException if an I/O error occurs.
650662
*/
651663
@Serial
652664
private void readObject(ObjectInputStream in)

0 commit comments

Comments
 (0)
Please sign in to comment.