Skip to content

Commit

Permalink
Setter return type should be void
Browse files Browse the repository at this point in the history
  • Loading branch information
jmigueprieto committed Aug 8, 2024
1 parent 11fa3d8 commit 00c80a3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -226,9 +226,8 @@ public String getZoneId() {
return zoneId;
}

public SaveScheduleRequest setZoneId(String zoneId) {
public void setZoneId(String zoneId) {
this.zoneId = zoneId;
return this;
}

public SaveScheduleRequest zoneId(String zoneId) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -270,9 +270,8 @@ public String getZoneId() {
return zoneId;
}

public WorkflowSchedule setZoneId(String zoneId) {
public void setZoneId(String zoneId) {
this.zoneId = zoneId;
return this;
}

public WorkflowSchedule zoneId(String zoneId) {
Expand Down

0 comments on commit 00c80a3

Please sign in to comment.