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 @@ -589,8 +589,7 @@ public boolean equals(final Object obj) {
.equals(other.getTopic());
result = result && mode_ == other.mode_;
result = result && type_ == other.type_;
result = result && unknownFields.equals(other.unknownFields);
return result;
return result && unknownFields.equals(other.unknownFields);
}

@Override
Expand Down Expand Up @@ -696,8 +695,7 @@ public Builder toBuilder() {
@Override
protected Builder newBuilderForType(
BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
return new Builder(parent);
}
/**
* Protobuf type {@code eventmesh.common.protocol.grpc.Subscription.SubscriptionItem}
Expand Down Expand Up @@ -1727,8 +1725,7 @@ public boolean equals(final Object obj) {
.equals(other.getTag());
result = result && internalGetProperties().equals(
other.internalGetProperties());
result = result && unknownFields.equals(other.unknownFields);
return result;
return result && unknownFields.equals(other.unknownFields);
}

@Override
Expand Down Expand Up @@ -1846,8 +1843,7 @@ public Builder toBuilder() {
@Override
protected Builder newBuilderForType(
BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
return new Builder(parent);
}
/**
* Protobuf type {@code eventmesh.common.protocol.grpc.Subscription.Reply}
Expand Down Expand Up @@ -2942,8 +2938,7 @@ public boolean equals(final Object obj) {
result = result && getReply()
.equals(other.getReply());
}
result = result && unknownFields.equals(other.unknownFields);
return result;
return result && unknownFields.equals(other.unknownFields);
}

@Override
Expand Down Expand Up @@ -3059,8 +3054,7 @@ public Builder toBuilder() {
@Override
protected Builder newBuilderForType(
BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
return new Builder(parent);
}
/**
* Protobuf type {@code eventmesh.common.protocol.grpc.Subscription}
Expand Down