Skip to content

Commit

Permalink
Adding in missing finals.
Browse files Browse the repository at this point in the history
  • Loading branch information
rpmoore committed May 7, 2014
1 parent f8eb41e commit 653c69c
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import java.util.List;

public class BulkGetRequest extends BulkRequest {
public BulkGetRequest(String bucket, List<Ds3Object> objects) throws XmlProcessingException {
public BulkGetRequest(final String bucket, final List<Ds3Object> objects) throws XmlProcessingException {
super(bucket, objects);
getQueryParams().put("operation", "start_bulk_get");
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
import java.io.IOException;

public class BulkGetResponse extends BulkResponse {
public BulkGetResponse(CloseableHttpResponse response) throws IOException {
public BulkGetResponse(final CloseableHttpResponse response) throws IOException {
super(response);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import java.util.List;

public class BulkPutRequest extends BulkRequest {
public BulkPutRequest(String bucket, List<Ds3Object> objects) throws XmlProcessingException {
public BulkPutRequest(final String bucket, final List<Ds3Object> objects) throws XmlProcessingException {
super(bucket, objects);
getQueryParams().put("operation", "start_bulk_put");
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import java.io.IOException;

public class BulkPutResponse extends BulkResponse {
public BulkPutResponse(CloseableHttpResponse response) throws IOException {
public BulkPutResponse(final CloseableHttpResponse response) throws IOException {
super(response);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

public abstract class BulkResponse extends AbstractResponse {
private MasterObjectList result;
public BulkResponse(CloseableHttpResponse response) throws IOException {
public BulkResponse(final CloseableHttpResponse response) throws IOException {
super(response);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import java.io.IOException;

public class DeleteBucketResponse extends AbstractResponse{
public DeleteBucketResponse(CloseableHttpResponse response) throws IOException {
public DeleteBucketResponse(final CloseableHttpResponse response) throws IOException {
super(response);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import java.io.IOException;

public class DeleteObjectResponse extends AbstractResponse {
public DeleteObjectResponse(CloseableHttpResponse response) throws IOException {
public DeleteObjectResponse(final CloseableHttpResponse response) throws IOException {
super(response);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class GetBucketResponse extends AbstractResponse {

private ListBucketResult result;

public GetBucketResponse(CloseableHttpResponse response) throws IOException {
public GetBucketResponse(final CloseableHttpResponse response) throws IOException {
super(response);

}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class GetObjectResponse extends AbstractResponse {

private InputStream content;

public GetObjectResponse(CloseableHttpResponse response) throws IOException {
public GetObjectResponse(final CloseableHttpResponse response) throws IOException {
super(response);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class GetServiceResponse extends AbstractResponse {

private ListAllMyBucketsResult result;

public GetServiceResponse(CloseableHttpResponse response) throws IOException {
public GetServiceResponse(final CloseableHttpResponse response) throws IOException {
super(response);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import java.io.IOException;

public class PutBucketResponse extends AbstractResponse {
public PutBucketResponse(CloseableHttpResponse response) throws IOException {
public PutBucketResponse(final CloseableHttpResponse response) throws IOException {
super(response);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import java.io.IOException;

public class PutObjectResponse extends AbstractResponse {
public PutObjectResponse(CloseableHttpResponse response) throws IOException {
public PutObjectResponse(final CloseableHttpResponse response) throws IOException {
super(response);
}

Expand Down

0 comments on commit 653c69c

Please sign in to comment.