Skip to content

replace rewrite with copy in the javadoc #352

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 11, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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