src/java.security.jgss/share/classes/sun/security/krb5/internal/KerberosTime.java
changeset 58331 e4ce29f6094e
parent 47216 71c04702a3d5
equal deleted inserted replaced
58330:de8e08015d51 58331:e4ce29f6094e
    86      */
    86      */
    87     public KerberosTime(long time) {
    87     public KerberosTime(long time) {
    88         this(time, 0);
    88         this(time, 0);
    89     }
    89     }
    90 
    90 
    91     // This constructor is used in the native code
    91     // Warning: called by NativeCreds.c and nativeccache.c
    92     // src/windows/native/sun/security/krb5/NativeCreds.c
       
    93     public KerberosTime(String time) throws Asn1Exception {
    92     public KerberosTime(String time) throws Asn1Exception {
    94         this(toKerberosTime(time), 0);
    93         this(toKerberosTime(time), 0);
    95     }
    94     }
    96 
    95 
    97     private static long toKerberosTime(String time) throws Asn1Exception {
    96     private static long toKerberosTime(String time) throws Asn1Exception {