src/java.base/share/classes/sun/security/provider/certpath/DistributionPointFetcher.java

Print this page

        

*** 231,242 **** if (debug != null) { debug.println("Trying to fetch CRL from DP " + uri); } CertStore ucs = null; try { ! ucs = URICertStore.getInstance ! (new URICertStore.URICertStoreParameters(uri)); } catch (InvalidAlgorithmParameterException | NoSuchAlgorithmException e) { if (debug != null) { debug.println("Can't create URICertStore: " + e.getMessage()); } --- 231,241 ---- if (debug != null) { debug.println("Trying to fetch CRL from DP " + uri); } CertStore ucs = null; try { ! ucs = URICertStore.getInstance(new URICertStoreParameters(uri)); } catch (InvalidAlgorithmParameterException | NoSuchAlgorithmException e) { if (debug != null) { debug.println("Can't create URICertStore: " + e.getMessage()); }