Removed unused local variables

git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@721808 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Oleg Kalnichevski 2008-11-30 13:09:38 +00:00
parent 07dad4db9c
commit f7d3372681
1 changed files with 0 additions and 3 deletions

View File

@ -211,9 +211,6 @@ public class TestHostnameVerifier extends TestCase
} }
public void testSubjectAlt() throws Exception { public void testSubjectAlt() throws Exception {
X509HostnameVerifier DEFAULT = new BrowserCompatHostnameVerifier();
X509HostnameVerifier STRICT = new StrictHostnameVerifier();
X509HostnameVerifier ALLOW_ALL = new AllowAllHostnameVerifier();
CertificateFactory cf = CertificateFactory.getInstance("X.509"); CertificateFactory cf = CertificateFactory.getInstance("X.509");
InputStream in = new ByteArrayInputStream(X509_MULTIPLE_SUBJECT_ALT); InputStream in = new ByteArrayInputStream(X509_MULTIPLE_SUBJECT_ALT);
X509Certificate x509 = (X509Certificate) cf.generateCertificate(in); X509Certificate x509 = (X509Certificate) cf.generateCertificate(in);