mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 23:04:50 +02:00
8263105: security-libs doclint cleanup
Reviewed-by: iris, darcy, dfuchs, mullan
This commit is contained in:
parent
6971c23a3a
commit
32cbd193d9
35 changed files with 294 additions and 79 deletions
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2003, 2019, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2003, 2021, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
|
@ -48,7 +48,7 @@ public final class CodeSigner implements Serializable {
|
|||
*/
|
||||
private CertPath signerCertPath;
|
||||
|
||||
/*
|
||||
/**
|
||||
* The signature timestamp.
|
||||
*
|
||||
* @serial
|
||||
|
@ -165,7 +165,14 @@ public final class CodeSigner implements Serializable {
|
|||
return sb.toString();
|
||||
}
|
||||
|
||||
// Explicitly reset hash code value to -1
|
||||
/**
|
||||
* Restores the state of this object from the stream, and explicitly
|
||||
* resets hash code value to -1.
|
||||
*
|
||||
* @param ois 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 ois)
|
||||
throws IOException, ClassNotFoundException {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue