Skip to content

Commit

Permalink
<Removed unnecessary getters and setters in eventmesh-common/src/main…
Browse files Browse the repository at this point in the history
…/java/org/apache/eventmesh/common/protocol/http/body/client/HeartbeatRequestBody.java >
  • Loading branch information
AaronGhebretinsae committed Jan 25, 2024
1 parent 1a9a346 commit a22b0c4
Showing 1 changed file with 0 additions and 30 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,37 +74,7 @@ public static class HeartbeatEntity {
private String url;
private String instanceId;

Check warning on line 75 in eventmesh-common/src/main/java/org/apache/eventmesh/common/protocol/http/body/client/HeartbeatRequestBody.java

View check run for this annotation

Codecov / codecov/patch

eventmesh-common/src/main/java/org/apache/eventmesh/common/protocol/http/body/client/HeartbeatRequestBody.java#L72-L75

Added lines #L72 - L75 were not covered by tests

public String getTopic() {
return topic;
}

public void setTopic(String topic) {
this.topic = topic;
}

public String getServiceId() {
return serviceId;
}

public void setServiceId(String serviceId) {
this.serviceId = serviceId;
}

public String getUrl() {
return url;
}

public void setUrl(String url) {
this.url = url;
}

public String getInstanceId() {
return instanceId;
}

public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
}


Expand Down

0 comments on commit a22b0c4

Please sign in to comment.