Tab police

Though I had found all the tab generators in Eclipse ...

git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@1604894 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2014-06-23 17:49:50 +00:00
parent 4006d7e4f2
commit 41afff3f2a
4 changed files with 7 additions and 7 deletions

View File

@ -176,7 +176,7 @@ public class TestSSLSocketFactory {
@Test
public void testClientAuthSSLAliasChoice() throws Exception {
// TODO unused - is there a bug in the test?
// TODO unused - is there a bug in the test?
final PrivateKeyStrategy aliasStrategy = new PrivateKeyStrategy() {
@Override

View File

@ -50,9 +50,9 @@ public class TestRFC2617Scheme {
static class TestAuthScheme extends RFC2617Scheme {
private static final long serialVersionUID = 1L;
private static final long serialVersionUID = 1L;
public TestAuthScheme() {
public TestAuthScheme() {
super();
}

View File

@ -162,9 +162,9 @@ public class TestClientReauthentication extends LocalServerTestBase {
@Override
public AuthScheme create(final HttpContext context) {
return new BasicScheme() {
private static final long serialVersionUID = 1L;
private static final long serialVersionUID = 1L;
@Override
@Override
public String getSchemeName() {
return "MyBasic";
}

View File

@ -67,12 +67,12 @@ public class TestMultipartContentBody {
@Test(expected=IllegalArgumentException.class)
public void testStringBodyInvalidConstruction1() throws Exception {
Assert.assertNotNull(new StringBody(null, ContentType.DEFAULT_TEXT)); // avoid unused warning
Assert.assertNotNull(new StringBody(null, ContentType.DEFAULT_TEXT)); // avoid unused warning
}
@Test(expected=IllegalArgumentException.class)
public void testStringBodyInvalidConstruction2() throws Exception {
Assert.assertNotNull(new StringBody("stuff", (ContentType) null)); // avoid unused warning
Assert.assertNotNull(new StringBody("stuff", (ContentType) null)); // avoid unused warning
}
@Test