jdk/src/java.base/share/classes/sun/security/util/ObjectIdentifier.java
changeset 32649 2ee9017c7597
parent 31538 0981099a3e54
child 37361 a790f7bc3878
equal deleted inserted replaced
32648:1fa861caf840 32649:2ee9017c7597
    48  * @author David Brownell
    48  * @author David Brownell
    49  * @author Amit Kapoor
    49  * @author Amit Kapoor
    50  * @author Hemma Prafullchandra
    50  * @author Hemma Prafullchandra
    51  */
    51  */
    52 
    52 
    53 final public
    53 public final
    54 class ObjectIdentifier implements Serializable
    54 class ObjectIdentifier implements Serializable
    55 {
    55 {
    56     /**
    56     /**
    57      * We use the DER value (no tag, no length) as the internal format
    57      * We use the DER value (no tag, no length) as the internal format
    58      * @serial
    58      * @serial
   102      * @serial
   102      * @serial
   103      */
   103      */
   104     private int         componentLen = -1;            // how much is used.
   104     private int         componentLen = -1;            // how much is used.
   105 
   105 
   106     // Is the components field calculated?
   106     // Is the components field calculated?
   107     transient private boolean   componentsCalculated = false;
   107     private transient boolean   componentsCalculated = false;
   108 
   108 
   109     private void readObject(ObjectInputStream is)
   109     private void readObject(ObjectInputStream is)
   110             throws IOException, ClassNotFoundException {
   110             throws IOException, ClassNotFoundException {
   111         is.defaultReadObject();
   111         is.defaultReadObject();
   112 
   112