Redundant semis
git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@1406423 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
fdfd59534c
commit
838a106e90
|
@ -41,7 +41,7 @@ public class TestRequestEntityWrapper {
|
||||||
|
|
||||||
@Before
|
@Before
|
||||||
public void setup() throws Exception {
|
public void setup() throws Exception {
|
||||||
entity = Mockito.mock(HttpEntity.class);;
|
entity = Mockito.mock(HttpEntity.class);
|
||||||
wrapper = new RequestEntityWrapper(entity);
|
wrapper = new RequestEntityWrapper(entity);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -48,7 +48,7 @@ public class TestResponseEntityWrapper {
|
||||||
@Before
|
@Before
|
||||||
public void setup() throws Exception {
|
public void setup() throws Exception {
|
||||||
instream = Mockito.mock(InputStream.class);
|
instream = Mockito.mock(InputStream.class);
|
||||||
entity = Mockito.mock(HttpEntity.class);;
|
entity = Mockito.mock(HttpEntity.class);
|
||||||
Mockito.when(entity.getContent()).thenReturn(instream);
|
Mockito.when(entity.getContent()).thenReturn(instream);
|
||||||
releaseTrigger = Mockito.mock(ConnectionReleaseTriggerImpl.class);
|
releaseTrigger = Mockito.mock(ConnectionReleaseTriggerImpl.class);
|
||||||
wrapper = new ResponseEntityWrapper(entity, releaseTrigger);
|
wrapper = new ResponseEntityWrapper(entity, releaseTrigger);
|
||||||
|
|
Loading…
Reference in New Issue