src/java.base/share/classes/javax/security/cert/X509Certificate.java
changeset 53018 8bf9268df0e2
parent 47216 71c04702a3d5
child 54099 fd332722014c
equal deleted inserted replaced
53017:e10a1f7aaa13 53018:8bf9268df0e2
   208          * This turns out not to work for now. To run under JDK1.2 we would
   208          * This turns out not to work for now. To run under JDK1.2 we would
   209          * need to call beginPrivileged() but we can't do that and run
   209          * need to call beginPrivileged() but we can't do that and run
   210          * under JDK1.1.
   210          * under JDK1.1.
   211          */
   211          */
   212         String className = X509Provider;
   212         String className = X509Provider;
   213         if (className == null || className.length() == 0) {
   213         if (className == null || className.isEmpty()) {
   214             // shouldn't happen, but assume corrupted properties file
   214             // shouldn't happen, but assume corrupted properties file
   215             // provide access to sun implementation
   215             // provide access to sun implementation
   216             className = "com.sun.security.cert.internal.x509.X509V1CertImpl";
   216             className = "com.sun.security.cert.internal.x509.X509V1CertImpl";
   217         }
   217         }
   218         try {
   218         try {