Skip to content

Commit

Permalink
Fixed style check violations (tabs introduced by a previous commit)
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@1432730 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
ok2c committed Jan 13, 2013
1 parent 6a8961c commit 19c10ca
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public abstract class AuthSchemeBase implements ContextAwareAuthScheme {
* @deprecated (4.3) do not use.
*/
@Deprecated
public AuthSchemeBase(final ChallengeState challengeState) {
public AuthSchemeBase(final ChallengeState challengeState) {
super();
this.challengeState = challengeState;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public SystemDefaultRoutePlanner(
}

@Override
protected HttpHost determineProxy(
protected HttpHost determineProxy(
final HttpHost target,
final HttpRequest request,
final HttpContext context) throws HttpException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public class ByteArrayBody extends AbstractContentBody {
* or {@link MultipartEntityBuilder}
*/
@Deprecated
public ByteArrayBody(final byte[] data, final String mimeType, final String filename) {
public ByteArrayBody(final byte[] data, final String mimeType, final String filename) {
this(data, ContentType.create(mimeType), filename);
}

Expand Down Expand Up @@ -97,7 +97,7 @@ public void writeTo(final OutputStream out) throws IOException {
}

@Override
public String getCharset() {
public String getCharset() {
return null;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public class InputStreamBody extends AbstractContentBody {
* String)} or {@link MultipartEntityBuilder}
*/
@Deprecated
public InputStreamBody(final InputStream in, final String mimeType, final String filename) {
public InputStreamBody(final InputStream in, final String mimeType, final String filename) {
this(in, ContentType.create(mimeType), filename);
}

Expand Down

0 comments on commit 19c10ca

Please sign in to comment.