[trivial] Remove unused variables

This commit is contained in:
Andrew Gaul 2013-09-09 22:38:41 -07:00
parent 8bdded3222
commit 5b719900a0
1 changed files with 0 additions and 3 deletions

View File

@ -64,11 +64,8 @@ public class AzureBlobBlockUploadStrategy implements MultipartUploadStrategy {
checkArgument(length <= (MAX_NUMBER_OF_BLOCKS * MAX_BLOCK_SIZE));
long offset = 0L;
List<String> blockIds = Lists.newArrayList();
int blockCount = 0;
int totalBlocks = (int) Math.ceil(((double)length) / MAX_BLOCK_SIZE);
long bytesWritten = 0;
while (offset < length) {
blockCount++;
long chunkSize = MAX_BLOCK_SIZE;
if (length - offset < MAX_BLOCK_SIZE) {
chunkSize = length % MAX_BLOCK_SIZE;