Ben Copsey

Fix clang warnings:

Remove duplicate synthesize for totalBytesRead
Add placeholder dealloc for ASINetworkQueue
@@ -1395,7 +1395,6 @@ static NSError *ASIUnableToCreateRequestError; @@ -1395,7 +1395,6 @@ static NSError *ASIUnableToCreateRequestError;
1395 @synthesize mainRequest; 1395 @synthesize mainRequest;
1396 @synthesize totalBytesRead; 1396 @synthesize totalBytesRead;
1397 @synthesize showAccurateProgress; 1397 @synthesize showAccurateProgress;
1398 -@synthesize totalBytesRead;  
1399 @synthesize uploadBufferSize; 1398 @synthesize uploadBufferSize;
1400 @synthesize defaultResponseEncoding; 1399 @synthesize defaultResponseEncoding;
1401 @synthesize responseEncoding; 1400 @synthesize responseEncoding;
@@ -40,6 +40,11 @@ @@ -40,6 +40,11 @@
40 return self; 40 return self;
41 } 41 }
42 42
  43 +- (void)dealloc
  44 +{
  45 + [super dealloc];
  46 +}
  47 +
43 - (void)go 48 - (void)go
44 { 49 {
45 if (!showAccurateProgress) { 50 if (!showAccurateProgress) {