Skip to content
Merged
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 @@ -335,7 +335,7 @@ public static Builder newBuilder(QueryOperationsResponse prototype) {

@Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE
return this.equals(DEFAULT_INSTANCE)
? new Builder() : new Builder().mergeFrom(this);
}

Expand Down Expand Up @@ -481,7 +481,7 @@ public Builder mergeFrom(com.google.protobuf.Message other) {
}

public Builder mergeFrom(QueryOperationsResponse other) {
if (other == QueryOperationsResponse.getDefaultInstance()) {
if (other.equals(QueryOperationsResponse.getDefaultInstance())) {
return this;
}
if (operationsBuilder_ == null) {
Expand Down