> +
> + @Inject
> + public ParseBlobFromHeadersAndHttpContent(Blob.Factory blobFactory) {
> + this.blobFactory = blobFactory;
> + }
> +
> + public Blob apply(HttpResponse from) {
> + Blob blob = blobFactory.create(null);
> +
> + blob.getAllHeaders().putAll(from.getHeaders());
> + blob.setPayload(from.getPayload());
> + return blob;
> + }
> +
> + @Override
> + public ParseBlobFromHeadersAndHttpContent setContext(HttpRequest
> request) {
You are not using the parameter. Does this class really need to implement the
`InvocationContext` interface?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/188/files#r7141226