File tree 1 file changed +2
-6
lines changed
test/jdk/security/infra/java/security/cert/CertPathValidator/certification
1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -57,18 +57,15 @@ public static void main(String[] args) throws Exception {
57
57
58
58
ValidatePathWithParams pathValidator = new ValidatePathWithParams (null );
59
59
60
- boolean ocspEnabled = true ;
61
-
62
60
if (args .length >= 1 && "CRL" .equalsIgnoreCase (args [0 ])) {
63
61
pathValidator .enableCRLCheck ();
64
- ocspEnabled = false ;
65
62
} else {
66
63
// OCSP check by default
67
64
pathValidator .enableOCSPCheck ();
68
65
}
69
66
70
67
new BuypassClass2 ().runTest (pathValidator );
71
- new BuypassClass3 ().runTest (pathValidator , ocspEnabled );
68
+ new BuypassClass3 ().runTest (pathValidator );
72
69
}
73
70
}
74
71
@@ -320,8 +317,7 @@ class BuypassClass3 {
320
317
"BJmiWd5uUxev0nVw0saqvlo4yAEBq4rI/DieKcQI4qEI8myzoS0R0azMfLM=\n " +
321
318
"-----END CERTIFICATE-----" ;
322
319
323
- public void runTest (ValidatePathWithParams pathValidator , boolean ocspEnabled )
324
- throws Exception {
320
+ public void runTest (ValidatePathWithParams pathValidator ) throws Exception {
325
321
// Validate valid
326
322
pathValidator .validate (new String []{VALID_CLASS_3 , INT_CLASS_3 },
327
323
ValidatePathWithParams .Status .GOOD , null , System .out );
You can’t perform that action at this time.
0 commit comments