Skip to content

Commit

Permalink
(jcabi#178) Fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
andreoss committed Jun 26, 2020
1 parent 8e4aaef commit ec5d25b
Showing 1 changed file with 16 additions and 14 deletions.
30 changes: 16 additions & 14 deletions src/test/java/com/jcabi/http/MockWire.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
import java.io.IOException;
import java.io.InputStream;
import java.util.Collection;
import java.util.Map.Entry;
import java.util.Map;
import javax.net.ssl.SSLContext;

/**
Expand Down Expand Up @@ -65,19 +65,21 @@ public MockWire(final Wire wire) {
}

@Override
public final Response send(final Request req, final String home, final String method,
final Collection<Entry<String, String>> headers,
final InputStream content, final int connect, final int read,
final SSLContext sslcontext) throws IOException {
return mockDelegate.send(
req,
home,
method,
headers,
content,
connect,
read,
sslcontext
public final Response send(
final Request req, final String home, final String method,
final Collection<Map.Entry<String, String>> headers,
final InputStream content, final int connect, final int read,
final SSLContext sslcontext
) throws IOException {
return MockWire.mockDelegate.send(
req,
home,
method,
headers,
content,
connect,
read,
sslcontext
);
}

Expand Down

0 comments on commit ec5d25b

Please sign in to comment.