> + })));
> + }
> +
> + private class BlobUploader implements Callable<MultipartPart> {
> + private MultipartUpload mpu;
> + private int partNumber;
> + private Payload payload;
> +
> + BlobUploader(MultipartUpload mpu, int partNumber, Payload payload) {
> + this.mpu = mpu;
> + this.partNumber = partNumber;
> + this.payload = payload;
> + }
> +
> + @Override
> + public final MultipartPart call() {
Remove `final` here, add to class and fields.
---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/975/files/0b784d15fa6f35ceb82028e1823e85c31ccf513d#r68280327