Skip to content

Commit

Permalink
Fix bug of parts assigning of CompleteMultipartUploadImpl
Browse files Browse the repository at this point in the history
  • Loading branch information
Wangzijian committed Feb 26, 2013
1 parent 4451106 commit 47b2e75
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ public CompleteMultipartUploadImpl(

@Override
public CompleteMultipartUpload part(Part part) {
parts.add(part);
this.parts.add(part);
return this;
}

@Override
public CompleteMultipartUpload parts(List<Part> parts) {
parts.addAll(parts);
this.parts.addAll(parts);
return this;
}

Expand Down

0 comments on commit 47b2e75

Please sign in to comment.