Remove import

This commit is contained in:
James 2017-05-22 16:20:58 -04:00
parent 6764079129
commit 6dbcd0fc31
1 changed files with 3 additions and 5 deletions

View File

@ -1,7 +1,5 @@
package ca.uhn.fhir.rest.client.apache;
import static org.hamcrest.Matchers.array;
/*
* #%L
* HAPI FHIR - Core Library
@ -64,7 +62,7 @@ public class ApacheHttpResponse implements IHttpResponse {
this.myResponse = theResponse;
}
@Deprecated //override deprecated method
@Deprecated // override deprecated method
@Override
public void bufferEntitity() throws IOException {
bufferEntity();
@ -81,7 +79,7 @@ public class ApacheHttpResponse implements IHttpResponse {
try {
this.myEntityBytes = IOUtils.toByteArray(respEntity);
} catch (IllegalStateException e) {
//FIXME resouce leak
// FIXME resouce leak
throw new InternalErrorException(e);
}
}