Skip to content

Commit

Permalink
Merge pull request #352 from aozarov/temp
Browse files Browse the repository at this point in the history
replace rewrite with copy in the javadoc
  • Loading branch information
mziccard committed Nov 11, 2015
2 parents ed1d437 + bfd54bd commit c440ac5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,14 +79,14 @@ public long blobSize() {
}

/**
* Returns {@code true} of blob rewrite finished, {@code false} otherwise.
* Returns {@code true} if blob copy has finished, {@code false} otherwise.
*/
public boolean isDone() {
return rewriteResponse.isDone;
}

/**
* Returns the number of bytes copied.
* Returns the number of bytes copied.
*/
public long totalBytesCopied() {
return rewriteResponse.totalBytesRewritten;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -804,7 +804,7 @@ private CopyRequest(Builder builder) {
}

/**
* Returns the blob to rewrite, as a {@link BlobId}.
* Returns the blob to copy, as a {@link BlobId}.
*/
public BlobId source() {
return source;
Expand All @@ -818,7 +818,7 @@ public List<BlobSourceOption> sourceOptions() {
}

/**
* Returns the rewrite target.
* Returns the {@link BlobInfo} for the target blob.
*/
public BlobInfo target() {
return target;
Expand Down

0 comments on commit c440ac5

Please sign in to comment.