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:
Sebastian Bazley 2012-11-07 02:46:26 +00:00
parent fdfd59534c
commit 838a106e90
2 changed files with 2 additions and 2 deletions

View File

@ -41,7 +41,7 @@ public class TestRequestEntityWrapper {
@Before
public void setup() throws Exception {
entity = Mockito.mock(HttpEntity.class);;
entity = Mockito.mock(HttpEntity.class);
wrapper = new RequestEntityWrapper(entity);
}

View File

@ -48,7 +48,7 @@ public class TestResponseEntityWrapper {
@Before
public void setup() throws Exception {
instream = Mockito.mock(InputStream.class);
entity = Mockito.mock(HttpEntity.class);;
entity = Mockito.mock(HttpEntity.class);
Mockito.when(entity.getContent()).thenReturn(instream);
releaseTrigger = Mockito.mock(ConnectionReleaseTriggerImpl.class);
wrapper = new ResponseEntityWrapper(entity, releaseTrigger);