File tree 2 files changed +25
-3
lines changed
src/java.logging/share/classes/java/util/logging
2 files changed +25
-3
lines changed Original file line number Diff line number Diff line change 1
1
/*
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.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
25
25
26
26
package java .util .logging ;
27
27
28
+ import java .io .Serial ;
28
29
import java .lang .ref .Reference ;
29
30
import java .lang .ref .ReferenceQueue ;
30
31
import java .lang .ref .WeakReference ;
@@ -432,11 +433,20 @@ public final int intValue() {
432
433
return value ;
433
434
}
434
435
436
+ @ Serial
435
437
private static final long serialVersionUID = -8176160795706313070L ;
436
438
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
439
447
private Object readResolve () {
448
+ // Serialization magic to prevent "doppelgangers".
449
+ // This is a performance optimization.
440
450
Optional <Level > level = KnownLevel .matches (this );
441
451
if (level .isPresent ()) {
442
452
return level .get ();
Original file line number Diff line number Diff line change @@ -599,6 +599,10 @@ public void setThrown(Throwable thrown) {
599
599
* by String values for each parameter. If a parameter is null, then
600
600
* a null String is written. Otherwise the output of Object.toString()
601
601
* is written.
602
+ *
603
+ * @param out the {@code ObjectOutputStream} to write to
604
+ *
605
+ * @throws IOException if I/O errors occur
602
606
*/
603
607
@ Serial
604
608
private void writeObject (ObjectOutputStream out ) throws IOException {
@@ -647,6 +651,14 @@ private void writeObject(ObjectOutputStream out) throws IOException {
647
651
* {@code threadID} which may be anything between {@code Integer.MIN_VALUE}
648
652
* and {Integer.MAX_VALUE}.
649
653
* </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.
650
662
*/
651
663
@ Serial
652
664
private void readObject (ObjectInputStream in )
You can’t perform that action at this time.
0 commit comments