jdk/src/share/classes/sun/security/krb5/internal/LastReqEntry.java
changeset 16905 0419f45c7761
parent 5506 202f599c92aa
equal deleted inserted replaced
16904:5eb5ed2346aa 16905:0419f45c7761
    88     }
    88     }
    89 
    89 
    90     public Object clone() {
    90     public Object clone() {
    91         LastReqEntry newEntry = new LastReqEntry();
    91         LastReqEntry newEntry = new LastReqEntry();
    92         newEntry.lrType = lrType;
    92         newEntry.lrType = lrType;
    93         newEntry.lrValue = (KerberosTime)lrValue.clone();
    93         newEntry.lrValue = lrValue;
    94         return newEntry;
    94         return newEntry;
    95     }
    95     }
    96 }
    96 }